18 lines
396 B
C#
18 lines
396 B
C#
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
|
||
};
|
||
}
|