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

12 lines
312 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 Nippel : DrinkingWaterHeatingFitting
{
public override bool TryParse(string input, out string output)
{
output = "К-т двух резьбозажим. нипелей с нар.резьбой 1/2х3/4";
return true;
}
}