75 lines
2.0 KiB
C#
75 lines
2.0 KiB
C#
using Hcs.Service.Async.HouseManagement;
|
||
|
||
namespace Hcs.Client.Api.Registry
|
||
{
|
||
/// <summary>
|
||
/// НСИ "Стадия жизненного цикла" (реестровый номер 338).
|
||
/// Взято из https://dom.gosuslugi.ru/opendataapi/nsi-338/v1.
|
||
/// </summary>
|
||
public static class Registry338
|
||
{
|
||
/// <summary>
|
||
/// Эксплуатация
|
||
/// </summary>
|
||
public static nsiRef Element1 => new()
|
||
{
|
||
Code = "1",
|
||
GUID = "29b18683-5195-4ef4-83fc-71bf45597d46"
|
||
};
|
||
|
||
/// <summary>
|
||
/// Реконструкция
|
||
/// </summary>
|
||
public static nsiRef Element2 => new()
|
||
{
|
||
Code = "2",
|
||
GUID = "75764145-f181-47e5-bff1-1306a46eb20e"
|
||
};
|
||
|
||
/// <summary>
|
||
/// Капитальный ремонт с отселением
|
||
/// </summary>
|
||
public static nsiRef Element3 => new()
|
||
{
|
||
Code = "3",
|
||
GUID = "dee170df-db42-4cd6-9e5e-b62be91b3663"
|
||
};
|
||
|
||
/// <summary>
|
||
/// Капитальный ремонт без отселения
|
||
/// </summary>
|
||
public static nsiRef Element4 => new()
|
||
{
|
||
Code = "4",
|
||
GUID = "91dc91e2-6883-4c84-b711-53f57f28dbe2"
|
||
};
|
||
|
||
/// <summary>
|
||
/// Снос
|
||
/// </summary>
|
||
public static nsiRef Element5 => new()
|
||
{
|
||
Code = "5",
|
||
GUID = "cc358aa9-10b3-4d6a-bbec-c5f6b14950f6"
|
||
};
|
||
|
||
/// <summary>
|
||
/// Не эксплуатируется, расселен
|
||
/// </summary>
|
||
public static nsiRef Element6 => new()
|
||
{
|
||
Code = "6",
|
||
GUID = "4bed3d7e-6015-428e-b4b4-7b7aec171c0d"
|
||
};
|
||
|
||
/// <summary>
|
||
/// Выведен из эксплуатации
|
||
/// </summary>
|
||
public static nsiRef Element7 => new()
|
||
{
|
||
Code = "7",
|
||
GUID = "f3edc065-c1a1-4110-96fa-03313ae7a039"
|
||
};
|
||
}
|
||
}
|