1
0
mirror of https://github.com/chylex/Query.git synced 2025-04-30 23:34:12 +02:00
Query/AppConv/General/IUnitType.cs

6 lines
140 B
C#

namespace AppConv.General{
internal interface IUnitType{
bool TryProcess(string src, string dst, out string result);
}
}