Files
mixtape/zero.Web/Models/UserEditModel.cs
T

32 lines
733 B
C#
Raw Normal View History

2020-04-17 15:32:33 +02:00
using System;
using System.Collections.Generic;
using zero.Core.Entities;
namespace zero.Web.Models
{
public class UserEditModel : ObsoleteEditModel
2020-04-17 15:32:33 +02:00
{
public string Name { get; set; }
public bool IsSuper { get; set; }
public string Email { get; set; }
public bool IsEmailConfirmed { get; set; }
2020-11-24 12:02:03 +01:00
public string AvatarId { get; set; }
2020-04-17 15:32:33 +02:00
public string LanguageId { get; set; }
public List<string> Roles { get; set; } = new List<string>();
2021-05-04 17:23:52 +02:00
public List<UserClaim> Claims { get; set; } = new List<UserClaim>();
2020-04-17 15:32:33 +02:00
public DateTimeOffset? LockoutEnd { get; set; }
public bool IsLockedOut { get; set; }
public IList<Culture> SupportedCultures { get; set; } = new List<Culture>();
2020-04-17 15:32:33 +02:00
}
}