namespace StopShopping.Services.Models.Resp; /// /// /// public class User { /// /// 登录账号 /// /// public string Account { get; set; } = string.Empty; /// /// 昵称 /// /// public string NickName { get; set; } = string.Empty; /// /// 电话 /// /// public string? Telephone { get; set; } /// /// 默认角色 /// /// public UserRoles DefaultRole { get; set; } /// /// 头像地址 /// /// public string? AvatarUrl { get; set; } /// /// 上次登录时间 /// /// public string? LastLoginTime { get; set; } }