Files
Backend-Api/AccountManagement.Application.Contracts/Account/ChangePassword.cs
2024-07-05 21:36:15 +03:30

10 lines
238 B
C#

namespace AccountManagement.Application.Contracts.Account
{
public class ChangePassword
{
public long Id { get; set; }
public string Password { get; set; }
public string RePassword { get; set; }
}
}