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

17 lines
445 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()
{
2023-10-15 22:21:45 +03:00
[16] = "16х2,2",
[20] = "20х2,8",
[25] = "25х3,5",
[32] = string.Empty,
[40] = string.Empty,
[50] = string.Empty,
[63] = string.Empty
2023-10-13 15:04:27 +03:00
};
}