31 lines
526 B
C#
31 lines
526 B
C#
|
|
|||
|
using asg_form.Controllers;
|
|||
|
using Microsoft.AspNetCore.Identity;
|
|||
|
|
|||
|
namespace asg_form
|
|||
|
{
|
|||
|
public class User : IdentityUser<long>
|
|||
|
{
|
|||
|
public string? UserBase64 { get; set; }
|
|||
|
public DateTime CreationTime { get; set; }
|
|||
|
|
|||
|
public form? haveform { get; set; }
|
|||
|
|
|||
|
public bool? isbooking { get; set; }
|
|||
|
public string? chinaname { get; set; }
|
|||
|
|
|||
|
public string? officium { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class Role : IdentityRole<long>
|
|||
|
{
|
|||
|
public string msg { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|