16 lines
507 B
C#
16 lines
507 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; }
|
|
|
|
public string? Remark { get; set; }
|
|
}
|
|
} |