summaryrefslogtreecommitdiff
path: root/RhSolutions.QueryModifiers/DrinkingWaterHeatingPipes/BlackPipe.cs
blob: b715cc169d00f18badcaa1e2439d67da25a17e9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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] = string.Empty,
        [40] = string.Empty,
        [50] = string.Empty,
        [63] = string.Empty
    };
}