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

21 lines
621 B
C#

using System.Collections.Generic;
namespace AccountManagement.Application.Contracts.SubAccount
{
public class EditSubAccount
{
public long SubAccountId { get; set; }
public string FName { get; set; }
public string LName { get; set; }
public string NationalCode { get; set; }
public string ProfilePhoto { get; set; }
public string Password { get; set; }
public string PhoneNumber { get; set; }
public string RePassword { get; set; }
public long SubAccountRoleId { get; set; }
public List<long> WorkshopIds { get; set; }
}
}