9 lines
212 B
C#
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!;
|
|
}
|