38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
namespace Hcs.ClientNet.Api.Registry
|
||
{
|
||
/// <summary>
|
||
/// НСИ "Состояние дома" (реестровый номер 24).
|
||
/// Взято из https://dom.gosuslugi.ru/opendataapi/nsi-24/v1.
|
||
/// </summary>
|
||
public static class Registry24
|
||
{
|
||
/// <summary>
|
||
/// Аварийный
|
||
/// </summary>
|
||
public static RegistryElement Element1 => new(
|
||
"1",
|
||
"cbe05853-a91b-43cc-a2cb-06cdfa97d492");
|
||
|
||
/// <summary>
|
||
/// Исправный
|
||
/// </summary>
|
||
public static RegistryElement Element2 => new(
|
||
"2",
|
||
"2d3ae73e-6c72-4740-9122-9c632d1893a7");
|
||
|
||
/// <summary>
|
||
/// Ветхий
|
||
/// </summary>
|
||
public static RegistryElement Element3 => new(
|
||
"3",
|
||
"bf083ae4-e4ec-4ace-b190-4d009e5cd1a1");
|
||
|
||
/// <summary>
|
||
/// Не выбран
|
||
/// </summary>
|
||
public static RegistryElement Element4 => new(
|
||
"4",
|
||
"4ee07c0b-82d6-41f4-a8c5-2cff784bbd9c");
|
||
}
|
||
}
|