14 lines
462 B
C#
14 lines
462 B
C#
|
|
namespace LMS.Repository.User
|
|||
|
|
{
|
|||
|
|
public class UpdatedUserModel
|
|||
|
|
{
|
|||
|
|
public double? AgentPercent { get; set; }
|
|||
|
|
public int? AllDeviceCount { get; set; }
|
|||
|
|
public string? Email { get; set; }
|
|||
|
|
public int? FreeCount { get; set; }
|
|||
|
|
public string? NickName { get; set; }
|
|||
|
|
public string? UserName { get; set; }
|
|||
|
|
public string? PhoneNumber { get; set; }
|
|||
|
|
public List<string>? RoleNames { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|