using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Justice.Models { public class User { public int Id { get; set; } public string Username { get; set; } public string Password { get; set; } public string Role { get; set; } public string AuthorityType { get; set; } public string IdentityFilePath { get; set; } } public class AuthorityUser : User { } }