Add metering device history export

This commit is contained in:
2025-09-10 12:02:14 +09:00
parent 30235c3d7e
commit d52c8d0c18
7 changed files with 308 additions and 8 deletions

View File

@ -0,0 +1,16 @@
namespace Hcs.Client.Api.Registry
{
/// <summary>
/// НСИ "Тип прибора учета" (реестровый номер 27).
/// Взято из https://dom.gosuslugi.ru/opendataapi/nsi-27/v1.
/// </summary>
public static class Registry27
{
/// <summary>
/// Индивидуальный
/// </summary>
public static RegistryElement Element1 => new(
"1",
"3e86b303-62be-4837-91c1-ed2475702c65");
}
}