30 lines
748 B
C#
30 lines
748 B
C#
namespace CompanyManagment.App.Contracts.Representative;
|
|
|
|
public class RepresentativeSearchModel
|
|
{
|
|
public string FName { get; set; }
|
|
public string LName { get; set; }
|
|
|
|
public string LegalName { get; set; }
|
|
public string FullName { get; set; }
|
|
|
|
public string Nationalcode { get; set; }
|
|
|
|
public string IdNumber { get; set; }
|
|
|
|
|
|
|
|
public string RegisterId { get; set; }
|
|
|
|
public string NationalId { get; set; }
|
|
|
|
public string IsLegal { get; set; }
|
|
public string Phone { get; set; }
|
|
|
|
public string AgentPhone { get; set; }
|
|
|
|
public string IsActive { get; set; }
|
|
public string Address { get; set; }
|
|
public string ContractingPartyName { get; set; }
|
|
public long ContractingPartyId { get; set; }
|
|
} |