8 lines
118 B
C#
8 lines
118 B
C#
namespace BITKit
|
|
{
|
|
|
|
public interface ITextValidation
|
|
{
|
|
bool IsTextValid(string text, out string errorReason);
|
|
}
|
|
} |