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