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