mirror of
https://gitea.tendokyu.moe/Kayori/Medusa.net.git
synced 2026-09-22 22:38:00 +03:00
13 lines
280 B
C#
13 lines
280 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace Server.Entities
|
|
{
|
|
public class User: IdentityUser<int>
|
|
{
|
|
public int PaseliAmount { get; set; } = 0;
|
|
public required int Pin { get; set; }
|
|
|
|
public List<Card> Cards { get; set; } = default!;
|
|
}
|
|
}
|