mirror of
https://github.com/chylex/Query.git
synced 2025-07-24 18:59:08 +02:00
6 lines
121 B
C#
6 lines
121 B
C#
namespace AppConv.General {
|
|
interface IUnitType {
|
|
bool TryProcess(string src, string dst, out string result);
|
|
}
|
|
}
|