9 lines
283 B
C#
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; }
|
|
} |