1
0
mirror of https://github.com/chylex/Query.git synced 2025-04-29 11:34:06 +02:00
Query/AppConv/General/IUnitType.cs
2024-08-05 20:42:15 +02:00

6 lines
116 B
C#

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