using System.ComponentModel.DataAnnotations; namespace StopShopping.Services.Models.Req; /// /// 修改用户资料 /// /// public record EditUserParams { /// /// 昵称 /// /// [Length(2, 50)] [Required] public string NickName { get; set; } = string.Empty; /// /// 头像文件名 /// /// public string? AvatarFileName { get; set; } /// /// 默认角色 /// /// public UserRoles DefaultRole { get; set; } /// /// 联系电话 /// /// [Phone] public string? Telephone { get; set; } }