blob: bc7c34d79cd39ac57c2fd4bdf321a27f6319ebff (
plain)
1
2
3
4
5
6
7
8
9
10
|
namespace RhSolutions.QueryModifiers.DrinkingWaterHeatingFittings;
public class EuroconeStabil : Eurocone
{
protected override Dictionary<string, string> _titles => new()
{
["16"] = "Резьбозажимное соединение stabil 16,2x2,6xG3/4",
["20"] = "Резьбозажимное соединение stabil 20x2,9xG3/4"
};
}
|