using System; using System.Collections.Generic; using zero.Core.Entities; namespace zero.Web.Models { public class UserEditModel : EditModel { public string Name { get; set; } public bool IsSuper { get; set; } public string Email { get; set; } public bool IsEmailConfirmed { get; set; } public string AvatarId { get; set; } public string LanguageId { get; set; } public List Roles { get; set; } = new List(); public List Claims { get; set; } = new List(); public DateTimeOffset? LockoutEnd { get; set; } public bool IsLockedOut { get; set; } public IList SupportedCultures { get; set; } = new List(); } }