27 lines
916 B
C#
27 lines
916 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 InstitutionContractExtensionInquiryResult
|
|
{
|
|
/// <summary>
|
|
/// اطلاعات شخص حقیقی
|
|
/// </summary>
|
|
public CreateInstitutionContractRealPartyRequest RealParty { get; set; }
|
|
|
|
/// <summary>
|
|
/// اطلاعات شخص حقوقی
|
|
/// </summary>
|
|
public CreateInstitutionContractLegalPartyRequest LegalParty { get; set; }
|
|
|
|
public LegalType LegalType { get; set; }
|
|
public Guid TemporaryId { get; set; }
|
|
public string Address { get; set; }
|
|
public string City { get; set; }
|
|
public string Province { get; set; }
|
|
public List<EditContactInfo> ContactInfoViewModels { get; set; }
|
|
public long RepresentativeId { get; set; }
|
|
} |