11 lines
333 B
C#
11 lines
333 B
C#
using _0_Framework.Application.Enums;
|
|
|
|
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class InstitutionContractCreationInquiryRequest
|
|
{
|
|
public string NationalCode { get; set; }
|
|
public string DateOfBirth { get; set; }
|
|
public string Mobile { get; set; }
|
|
public LegalType LegalType { get; set; }
|
|
} |