17 lines
499 B
C#
17 lines
499 B
C#
namespace Hcs.ClientNet.Api.Registry
|
|
{
|
|
/// <summary>
|
|
/// НСИ "Тип прибора учета" (реестровый номер 27).
|
|
/// Взято из https://dom.gosuslugi.ru/opendataapi/nsi-27/v1.
|
|
/// </summary>
|
|
public static class Registry27
|
|
{
|
|
/// <summary>
|
|
/// Индивидуальный
|
|
/// </summary>
|
|
public static RegistryElement Element1 => new(
|
|
"1",
|
|
"3a9687b5-caed-4ec6-8a08-f4d3d012f2c7");
|
|
}
|
|
}
|