26 lines
856 B
C#
26 lines
856 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using _0_Framework.Application.Enums;
|
|
using CompanyManagment.App.Contracts.InstitutionContractContactinfo;
|
|
|
|
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class InstitutionContractExtensionWorkshopsRequest
|
|
{
|
|
public Guid TempId { get; set; }
|
|
public string City {get; set;}
|
|
public string Province { get; set; }
|
|
public string Address { get; set; }
|
|
public List<EditContactInfo> ContactInfos { get; set; }
|
|
/// <summary>
|
|
/// اطلاعات شخص حقیقی
|
|
/// </summary>
|
|
public CreateInstitutionContractRealPartyRequest RealParty { get; set; }
|
|
|
|
/// <summary>
|
|
/// اطلاعات شخص حقوقی
|
|
/// </summary>
|
|
public CreateInstitutionContractLegalPartyRequest LegalParty { get; set; }
|
|
|
|
public LegalType LegalType { get; set; }
|
|
} |