blob: 86870c8c9256cb7805e685a1d4fa831b46d0aa3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
namespace RhSolutions.Parsers.Pipes;
[ParserKey("Black")]
public class BlackPipe : DrinkingWaterHeatingPipe
{
protected override string _title => "РЕХАУ BLACK";
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
};
}
|