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