Files
Backend-Api/AccountManagement.Application.Contracts/SubAccount/SubAccountChangePasswordAndPhoneNumber.cs

9 lines
292 B
C#

namespace AccountManagement.Application.Contracts.SubAccount;
public class SubAccountChangePasswordAndPhoneNumber
{
public long SubAccountId { get; set; }
public string Password { get; set; }
public string RePassword { get; set; }
public string PhoneNumber { get; set; }
}