This commit is contained in:
CortexCore
2023-07-17 10:23:47 +08:00
parent 3a61f6677b
commit 936a94c84b
17 changed files with 161 additions and 47 deletions

View File

@@ -0,0 +1,8 @@
namespace BITKit
{
public interface ITextValidation
{
bool IsTextValid(string text, out string errorReason);
}
}