Fix metering device import

This commit is contained in:
2025-09-10 16:18:42 +09:00
parent d52c8d0c18
commit f2d256f832
4 changed files with 20 additions and 2 deletions

View File

@ -0,0 +1,16 @@
namespace Hcs.Client.Api.Registry
{
/// <summary>
/// НСИ "Коммунальный ресурс" (реестровый номер 2).
/// Взято из https://dom.gosuslugi.ru/opendataapi/nsi-2/v1.
/// </summary>
public static class Registry2
{
/// <summary>
/// Тепловая энергия
/// </summary>
public static RegistryElement Element5 => new(
"5",
"25a29bae-e430-4424-8f34-8ad83c578657");
}
}