mirror of
https://gitea.tendokyu.moe/Kayori/Medusa.net.git
synced 2026-09-27 01:00:40 +03:00
14 lines
323 B
C#
14 lines
323 B
C#
using System.Collections.Generic;
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace Abstractions.Entities
|
|
{
|
|
public class User: IdentityUser<long>
|
|
{
|
|
public int PaseliAmount { get; set; } = 0;
|
|
public string Pin { get; set; } = "0000";
|
|
|
|
public List<Card> Cards { get; init; } = null!;
|
|
}
|
|
}
|