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

16 lines
279 B
C#
Raw Normal View History

2020-04-24 12:46:25 +02:00
namespace zero.Web.Models
{
public class UserListModel : ListModel
{
public string Name { get; set; }
public bool IsActive { get; set; }
public string Email { get; set; }
public string Roles { get; set; }
2020-05-14 15:40:41 +02:00
public string AvatarId { get; set; }
2020-04-24 12:46:25 +02:00
}
}