0
0
RhSolutions-Api/RhSolutions.Parsers/IProductParser.cs

7 lines
130 B
C#
Raw Permalink Normal View History

2024-02-08 17:11:11 +03:00
namespace RhSolutions.Parsers;
public interface IProductParser
{
public bool TryParse(string input, out string output);
}