autobus-api_old/AutobusApi.Infrastructure/Identity/ApplicationUser.cs
2023-11-15 19:00:34 +02:00

9 lines
212 B
C#

using Microsoft.AspNetCore.Identity;
namespace AutobusApi.Infrastructure.Identity;
public class ApplicationUser : IdentityUser<int>
{
public ICollection<RefreshToken> RefreshTokens { get; set; } = null!;
}