0
0
RhSolutions-Api/RhSolutions.Parsers/DrinkingWaterHeatingFittings/AdapterScrewcap.cs

20 lines
449 B
C#
Raw Normal View History

2024-02-08 17:11:11 +03:00
namespace RhSolutions.Parsers.Fittings;
2024-01-26 15:50:41 +03:00
2024-02-08 17:11:11 +03:00
[ParserKey("Переходник с накидной гайкой")]
2024-01-26 15:50:41 +03:00
public class AdapterScrewcap : Adapter
{
2024-02-19 22:33:51 +03:00
public AdapterScrewcap()
{
_defaultThreads = new()
{
["16"] = "1/2",
["20"] = "1/2",
["25"] = "3/4",
["32"] = "1",
["40"] = "1 1/2",
["50"] = "1 3/4",
["63"] = "2 3/8"
};
}
2024-01-26 15:50:41 +03:00
protected override string _title => "Переходник с накидной гайкой";
}