30 lines
957 B
C#
30 lines
957 B
C#
namespace CompanyManagment.App.Contracts.PersonalContractingParty;
|
|
|
|
public class PersonalContractingPartySearchModel
|
|
{
|
|
public long id { get; set; }
|
|
public string FName { get; set; }
|
|
public string LName { get; set; }
|
|
public string SureName { get; set; }
|
|
public string Nationalcode { get; set; }
|
|
|
|
public string IdNumber { get; set; }
|
|
|
|
//public string LegalName { get; set; }
|
|
public string RegisterId { get; set; }
|
|
public string IsLegal { get; set; }
|
|
public string NationalId { get; set; }
|
|
public int ArchiveCode { get; set; }
|
|
|
|
|
|
public string State { get; set; }
|
|
public string City { get; set; }
|
|
public string Zone { get; set; }
|
|
|
|
public string IsActiveString { get; set; }
|
|
public string IsBlock { get; set; }
|
|
public int BlockTimes { get; set; }
|
|
public long RepresentativeId { get; set; }
|
|
public string EmployeeName { get; set; }
|
|
public string RepresentativeName { get; set; }
|
|
} |