0
0
RhSolutions-Api/RhSolutions.Parsers/DrinkingWaterHeatingPipes/BlackPipe.cs

18 lines
396 B
C#
Raw Normal View History

2024-02-08 17:11:11 +03:00
namespace RhSolutions.Parsers.Pipes;
2024-01-26 15:50:41 +03:00
2024-02-08 17:11:11 +03:00
[ParserKey("Black")]
2024-01-26 15:50:41 +03:00
public class BlackPipe : DrinkingWaterHeatingPipe
{
2024-02-16 14:08:44 +03:00
protected override string _title => "РЕХАУ BLACK";
2024-01-26 15:50:41 +03:00
protected override Dictionary<int, string> _diameterNames => new()
{
[16] = "16х2,2",
[20] = "20х2,8",
[25] = "25х3,5",
[32] = string.Empty,
[40] = string.Empty,
[50] = string.Empty,
[63] = string.Empty
};
}