Files
Backend-Api/CompanyManagment.App.Contracts/Representative/RepresentativeSearchModel.cs
2024-07-05 21:36:15 +03:30

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; }
}