Add metering device import

This commit is contained in:
2025-09-06 16:57:18 +09:00
parent 24f89df15e
commit 28079c4d84
5 changed files with 125 additions and 0 deletions

View File

@ -0,0 +1,20 @@
using Hcs.Service.Async.HouseManagement;
namespace Hcs.Client.Api.Registry
{
/// <summary>
/// НСИ "Межповерочный интервал" (реестровый номер 16).
/// Взято из https://dom.gosuslugi.ru/opendataapi/nsi-16/v1.
/// </summary>
public static class Registry16
{
/// <summary>
/// 4 года
/// </summary>
public static nsiRef Element4 => new()
{
Code = "4",
GUID = "296aff1b-0fbe-4111-9aea-1693a6e58db0"
};
}
}