Exchange_1C_Counterparty/HRM_MQ_Consumer_Service/Structure/CounterParty.cs
2025-07-10 16:35:13 +05:00

42 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Newtonsoft.Json;
using System;
namespace HRM_MQ_Consumer_Service
{
public class CounterParty
{
public long Id { get; set; }
//Наименование
[JsonProperty("Наименование")]
public string Name { get; set; }
//Юридическое наименование
[JsonProperty("ПолноеНаименование")]
public string LegalName { get; set; }
//Идентификатор 1С
[JsonProperty("УникальныйИдентификатор")]
public string Guid { get; set; }
//Головная организация
public string GeneralCompany { get; set; }
//Код
public string Code { get; set; }
//БИН
[JsonProperty("БИН")]
public string Bin { get; set; }
//ИНН
[JsonProperty("ИНН")]
public string Tin { get; set; }
//Юридический адрес
public string LegalAddress { get; set; }
//Почтовый адрес
public string PostalAddress { get; set; }
//Резидент
[JsonProperty("НеРезидент")]
public bool Resident { get; set; }
//Признак удаления
public string Deleted { get; set; }
//Найденный объект
public CounterParty UpdCounterparty { get; set; }
}
}