38 lines
689 B
C#
Raw Normal View History

2024-08-03 20:40:34 +08:00

2024-08-10 19:01:49 +08:00
using System.ComponentModel;
2024-08-03 20:40:34 +08:00
using asg_form.Controllers;
using Microsoft.AspNetCore.Identity;
namespace asg_form
{
public class User : IdentityUser<long>
{
public string? UserBase64 { get; set; }
2024-08-10 19:01:49 +08:00
[DefaultValue(0)]
public long? Integral { get; set; }
2024-08-03 20:40:34 +08:00
public DateTime CreationTime { get; set; }
public form? haveform { get; set; }
public bool? isbooking { get; set; }
public string? chinaname { get; set; }
2024-08-10 19:01:49 +08:00
public string? officium { get; set; }
public int point { get; set; }
2024-08-03 20:40:34 +08:00
}
public class Role : IdentityRole<long>
{
public string msg { get; set; }
}
}