classlib/ExpenseTracker.Infrastructure/Identity/Models/ApplicationUser.cs
2024-08-07 21:12:02 +03:00

9 lines
234 B
C#

using AspNetCore.Identity.Mongo.Model;
namespace ExpenseTracker.Infrastructure.Identity.Models;
public class ApplicationUser : MongoUser<string>
{
public ICollection<RefreshToken<string>> RefreshTokens { get; set; } = null!;
}