2024-10-13 17:04:47 +08:00
|
|
|
|
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; }
|
2024-10-30 15:34:18 +08:00
|
|
|
|
|
|
|
|
|
|
public string? Remark { get; set; }
|
2024-10-13 17:04:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|