- using System.ComponentModel.DataAnnotations;
- using Abp.Application.Services.Dto;
- namespace WeOnlineApp.BaseSystem.Users.Dto
- {
- public class ChangePasswordDto : EntityDto<long>
- {
- [Required]
- public string CurrentPassword { get; set; }
- [Required]
- public string NewPassword { get; set; }
- }
- }
|