ChangeMyPasswordInput.cs 296 B

12345678910111213
  1. using System.ComponentModel.DataAnnotations;
  2. namespace VCommonCoreExample.AppServices.UserProfiles.Dto
  3. {
  4. public class ChangeMyPasswordInput
  5. {
  6. [Required]
  7. public string OldPassword { get; set; }
  8. [Required]
  9. public string NewPassword { get; set; }
  10. }
  11. }