15 lines
428 B
C#
15 lines
428 B
C#
namespace CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
|
|
|
public class ContractingPartyTempViewModel : CreateContractingPartyTemp
|
|
{
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// تاریخ تولد شمسی
|
|
/// </summary>
|
|
public string DateOfBirthFa { get; set; }
|
|
|
|
public string Address { get; set; }
|
|
public string City { get; set; }
|
|
public long RepresentativeId { get; set; }
|
|
|
|
} |