26 lines
789 B
C#
26 lines
789 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HRM_MQ_Consumer_Service.Structure
|
|
{
|
|
public class CounterParty1C
|
|
{
|
|
[JsonProperty("Наименование")]
|
|
public string Name { get; set; }
|
|
[JsonProperty("БИН")]
|
|
public string BIN { get; set; }
|
|
[JsonProperty("УникальныйИдентификатор")]
|
|
public string Guid { get; set; }
|
|
[JsonProperty("НеРезидент")]
|
|
public bool NonResident { get; set; }
|
|
[JsonProperty("ПолноеНаименование")]
|
|
public string LegalName { get; set; }
|
|
[JsonProperty("ИНН")]
|
|
public string TIN { get; set; }
|
|
}
|
|
}
|