Files
Backend-Api/AccountManagement.Application.Contracts/Account/AccountChangePasswordAndPhoneNumber.cs

9 lines
283 B
C#

namespace AccountManagement.Application.Contracts.Account;
public class AccountChangePasswordAndPhoneNumber
{
public long AccountId { get; set; }
public string Password { get; set; }
public string RePassword { get; set; }
public string PhoneNumber { get; set; }
}