ChangePasswordDto.cs 335 B

1234567891011121314
  1. using System.ComponentModel.DataAnnotations;
  2. using Abp.Application.Services.Dto;
  3. namespace WeOnlineApp.BaseSystem.Users.Dto
  4. {
  5. public class ChangePasswordDto : EntityDto<long>
  6. {
  7. [Required]
  8. public string CurrentPassword { get; set; }
  9. [Required]
  10. public string NewPassword { get; set; }
  11. }
  12. }