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