Files
Hushian/Common/Dtos/ChangePasswordDto.cs

15 lines
289 B
C#
Raw Normal View History

2025-06-28 16:13:40 +03:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2025-07-03 16:38:14 +03:30
namespace Common.Dtos
2025-06-28 16:13:40 +03:30
{
2025-07-03 16:38:14 +03:30
public class ChangePasswordDto
2025-06-28 16:13:40 +03:30
{
public string? OldPassWord { get; set; }
public string NewPassWord { get; set; }
}
}