Files
2024-07-05 21:36:15 +03:30

29 lines
677 B
C#

namespace CompanyManagment.App.Contracts.Representative;
public class RepresentativeViewModel
{
public long Id { get; set; }
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; }
}