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