Add living house UO import

This commit is contained in:
2025-09-01 17:53:52 +09:00
parent 7ae4858d6a
commit dd7dd88fa6
12 changed files with 449 additions and 69 deletions

View File

@ -0,0 +1,20 @@
using Hcs.Service.Async.HouseManagement;
namespace Hcs.Client.Api.Registry
{
/// <summary>
/// НСИ "Часовые зоны по Olson" (реестровый номер 32).
/// Взято из https://dom.gosuslugi.ru/opendataapi/nsi-32/v1.
/// </summary>
public static class Registry32
{
/// <summary>
/// Иркутск
/// </summary>
public static nsiRef Element11 => new()
{
Code = "11",
GUID = "244ae392-0b96-46f2-80ea-4dac32e7326a"
};
}
}