29 lines
788 B
C#
29 lines
788 B
C#
using _0_Framework.Application.Enums;
|
|
|
|
namespace CompanyManagment.App.Contracts.Representative;
|
|
|
|
public class RepresentativeGetListViewModel
|
|
{
|
|
/// <summary>
|
|
/// آیدی معرف
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// نام حقیقی یا نام حقوقی
|
|
/// </summary>
|
|
public string RealNameOrLegalName { get; set; }
|
|
|
|
/// <summary>
|
|
/// کدملی یا شناسه ملی
|
|
/// </summary>
|
|
public string NationalIdOrNationalCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// آیا این معرف طرف حسابی دارد؟
|
|
/// </summary>
|
|
public bool HasAnyContractingParty { get; set; }
|
|
|
|
public ActivationStatus RepresentativeStatus { get; set; }
|
|
public LegalType RepresentativeType { get; set; }
|
|
} |