0
0

Fix pipes dictionaries

This commit is contained in:
Serghei Cebotari 2023-10-15 22:21:45 +03:00
parent 35ac8789e6
commit ef35ac9990
2 changed files with 8 additions and 8 deletions

View File

@ -5,12 +5,12 @@ public class BlackPipe : DrinkingWaterHeatingPipe
protected override string _title => "Black"; protected override string _title => "Black";
protected override Dictionary<int, string> _diameterNames => new() protected override Dictionary<int, string> _diameterNames => new()
{ {
[16] = "16<EFBFBD>2,2", [16] = "16х2,2",
[20] = "20<EFBFBD>2,8", [20] = "20х2,8",
[25] = "25<EFBFBD>3,5", [25] = "25х3,5",
[32] = "32<33>4,4", [32] = string.Empty,
[40] = "40<34>5,5", [40] = string.Empty,
[50] = "50<35>6,9", [50] = string.Empty,
[63] = "63<36>8,6" [63] = string.Empty
}; };
} }

View File

@ -18,6 +18,6 @@ public class PinkPipe : DrinkingWaterHeatingPipe
[32] = "32х4,4", [32] = "32х4,4",
[40] = "40х5,5", [40] = "40х5,5",
[50] = "50х6,9", [50] = "50х6,9",
[63] = "63х8,6" [63] = "63х8,7"
}; };
} }