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

17 lines
426 B
C#
Raw Normal View History

2023-10-13 15:04:27 +03:00
namespace RhSolutions.QueryModifiers.DrinkingWaterHeatingPipes;
public class BlackPipe : DrinkingWaterHeatingPipe
{
protected override string _title => "Black";
protected override Dictionary<int, string> _diameterNames => new()
{
[16] = "16<31>2,2",
[20] = "20<32>2,8",
[25] = "25<32>3,5",
[32] = "32<33>4,4",
[40] = "40<34>5,5",
[50] = "50<35>6,9",
[63] = "63<36>8,6"
};
}