summaryrefslogtreecommitdiff
path: root/RhSolutions.Parsers/DrinkingWaterHeatingPipes/PinkPipe.cs
blob: d40483a45b8d2944672d738c0cfe0a3a695f09e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace RhSolutions.Parsers.Pipes;

[ParserKey("Pink")]
public class PinkPipe : DrinkingWaterHeatingPipe
{
	protected override string _title => "Pink+";

	protected override Dictionary<string, string> _makeUp => new()
	{
		["бухт"] = "бухта",
		["штанг"] = "прямые отрезки",
		["отр"] = "прямые отрезки"
	};
	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,7"
	};
}