0
0
RhSolutions-Api/RhSolutions.QueryModifiers/DrinkingWaterHeatingPipes/BlackPipe.cs
2023-10-13 15:04:27 +03:00

17 lines
426 B
C#

namespace RhSolutions.QueryModifiers.DrinkingWaterHeatingPipes;
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] = "32õ4,4",
[40] = "40õ5,5",
[50] = "50õ6,9",
[63] = "63õ8,6"
};
}