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

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; }
}
}