Rework registry elements

This commit is contained in:
2025-09-08 19:48:57 +09:00
parent 80901cc1f9
commit 30235c3d7e
16 changed files with 158 additions and 178 deletions

View File

@ -1,6 +1,4 @@
using Hcs.Service.Async.HouseManagement;
namespace Hcs.Client.Api.Registry
namespace Hcs.Client.Api.Registry
{
/// <summary>
/// НСИ "Показатели качества коммунальных ресурсов" (реестровый номер 276).
@ -11,19 +9,15 @@ namespace Hcs.Client.Api.Registry
/// <summary>
/// Величина тепловой нагрузки
/// </summary>
public static nsiRef Element4 => new()
{
Code = "4",
GUID = "51dd6edc-83fe-4810-8b62-4dc85a75e9a3"
};
public static RegistryElement Element4 => new(
"4",
"51dd6edc-83fe-4810-8b62-4dc85a75e9a3");
/// <summary>
/// Диапазон давления теплоносителя в подающем трубопроводе
/// </summary>
public static nsiRef Element10 => new()
{
Code = "10",
GUID = "a5a17c90-cc4b-4f32-a22b-6e06cd42a68c"
};
public static RegistryElement Element10 => new(
"10",
"a5a17c90-cc4b-4f32-a22b-6e06cd42a68c");
}
}