summaryrefslogtreecommitdiff
path: root/RhSolutions.QueryModifiers/DrinkingWaterHeatingPipes/BlackPipe.cs
blob: 272568ef238338e52eacdcb6c2036d49bd8eb472 (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] = "162,2",
        [20] = "202,8",
        [25] = "253,5",
        [32] = "324,4",
        [40] = "405,5",
        [50] = "506,9",
        [63] = "638,6"
    };
}