LMS.service/LMS.Repository/User/UpdatedUserModel.cs

16 lines
507 B
C#
Raw Normal View History

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