This commit is contained in:
mmrbnjd
2025-07-03 16:38:14 +03:30
parent 87d2360b32
commit 23043dd094
4 changed files with 153 additions and 12 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Dtos
{
public class ChangePasswordDto
{
public string? OldPassWord { get; set; }
public string NewPassWord { get; set; }
}
}