| 1234567891011121314151617181920212223242526272829303132333435 |
- using System.ComponentModel.DataAnnotations;
- using Abp.AutoMapper;
- using Abp.Runtime.Validation;
- using VberZero.AppService.Base.Dto;
- using VberZero.BaseSystem.Users;
- namespace VberZero.AppService.Users.Dto;
- [AutoMapTo(typeof(User))]
- public class UpdateUserDto : VzEntityDto<long>
- {
- [StringLength(User.MaxNameLength)] public string Name { get; set; } = "";
- [Required]
- [StringLength(User.MaxSurnameLength)]
- public string Surname { get; set; }
- [Required]
- [EmailAddress]
- [StringLength(User.MaxEmailAddressLength)]
- public string EmailAddress { get; set; }
- [StringLength(User.MaxPhoneNumberLength)]
- public string PhoneNumber { get; set; }
- public VzDefinition.GenderType Gender { get; set; }
- public VzDefinition.UserType UserType { get; set; }
- public VzDefinition.AccountType AccountType { get; set; }
- public bool IsActive { get; set; }
- public string[] RoleNames { get; set; }
- public string[] PermissionNames { get; set; }
- }
|