0
0
RhSolutions-Api/RhSolutions.Parsers/DrinkingWaterHeatingFittings/AdapterScrewcap.cs
Serghei Cebotari 93cd2ce76d
All checks were successful
Test and release / test (push) Successful in 1m53s
Test and release / release-image (push) Successful in 4m22s
Add default screwcaps threads
2024-02-19 22:33:51 +03:00

20 lines
449 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 => "Переходник с накидной гайкой";
}