summaryrefslogtreecommitdiff
path: root/RhSolutions.Parsers/DrinkingWaterHeatingPipes/StabilPipe.cs
blob: 1a525623d5201af66e848e10e9292b728b8d47b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace RhSolutions.Parsers.Pipes;

[ParserKey("Stabil")]
public class StabilPipe : DrinkingWaterHeatingPipe
{
	protected override string _title => "Stabil -PLATINUM";
	protected override Dictionary<int, string> _diameterNames => new()
	{
		[16] = "16,2х2,6",
		[20] = "20х2,9",
		[25] = "25х3,7",
		[32] = "32х4,7",
		[40] = "40х6,0",
		[50] = "50x6,9",
		[63] = "63x8,6"
	};
}