Files
hcs/Hcs.Client/Client/Api/Registry/Registry24.cs

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