45 lines
1006 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-11-02 20:55:08 +08:00
using System.Reflection.Metadata;
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-10-05 11:30:09 +08:00
//public string? CreationTime { get; set; }
2024-08-03 20:40:34 +08:00
public form? haveform { get; set; }
2024-11-17 13:37:37 +08:00
// public T_Team? myteam { get; set; }
2024-08-03 20:40:34 +08:00
public bool? isbooking { get; set; }
public string? chinaname { get; set; }
2024-08-10 19:01:49 +08:00
public string? officium { get; set; }
2024-10-19 20:40:45 +08:00
public string? qqnumber { get; set; }
2024-08-10 19:01:49 +08:00
2024-10-25 20:28:57 +08:00
public int? point { get; set; }
2024-08-19 16:19:38 +08:00
2024-08-20 20:26:05 +08:00
//public bool isadmin { get; set; }
//public List<string>? Roles { get; set; }
2024-11-02 20:55:08 +08:00
public string? roleListName { get; set; }
public string? roleListCode { get; set; }
2024-08-03 20:40:34 +08:00
}
public class Role : IdentityRole<long>
{
2024-10-25 20:28:57 +08:00
public string? msg { get; set; }
2024-08-03 20:40:34 +08:00
}
}