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

18 lines
396 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
};
}