1
0
mirror of https://github.com/chylex/Query.git synced 2025-09-12 03:53:08 +02:00
Files
Query/AppConv/General/IUnitType.cs
2024-08-01 21:35:14 +02:00

6 lines
121 B
C#

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