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

29 lines
915 B
C#

using _0_Framework.Application;
using System.Collections.Generic;
namespace AccountManagement.Application.Contracts.SubAccount
{
public class SubAccountViewModel
{
public long Id { get; set; }
//نام صاحب اکانت
public string AccountFullName { get; set; }
//نام صاحب ساب اکانت
public string SubAccountFullName { get; set; }
public string FName { get; set; }
public string LName { get; set; }
public string NationalCode { get; set; }
public string SubAccountRole { get; set; }
public List<(long Id, string Name)> SubAccountWorkshops { get; set; }
public string Username { get; set; }
public string PhoneNumber { get; set; }
public IsActive IsActive { get; set; }
public string ProfilePhoto { get; set; }
public long SubAccountRoleId { get; set; }
}
}