0
0

Add default screwcaps threads
All checks were successful
Test and release / test (push) Successful in 1m53s
Test and release / release-image (push) Successful in 4m22s

This commit is contained in:
Serghei Cebotari 2024-02-19 22:33:51 +03:00
parent 11e0fd8dfd
commit 93cd2ce76d

View File

@ -3,5 +3,18 @@ namespace RhSolutions.Parsers.Fittings;
[ParserKey("Переходник с накидной гайкой")]
public class AdapterScrewcap : Adapter
{
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"
};
}
protected override string _title => "Переходник с накидной гайкой";
}