mirror of
https://github.com/chylex/Query.git
synced 2025-04-30 23:34:12 +02:00
6 lines
140 B
C#
6 lines
140 B
C#
namespace AppConv.General{
|
|
internal interface IUnitType{
|
|
bool TryProcess(string src, string dst, out string result);
|
|
}
|
|
}
|