12 lines
306 B
C#
12 lines
306 B
C#
namespace AccountManagement.Application.Contracts.SubAccount
|
|
{
|
|
public class EditSubAccountProfile
|
|
{
|
|
public long SubAccountId { get; set; }
|
|
public string FullName { get; set; }
|
|
public string Username { get; set; }
|
|
public string ProfilePhoto { get; set; }
|
|
|
|
}
|
|
}
|