7 lines
122 B
C#
7 lines
122 B
C#
|
namespace HermesSocketServer.Validators
|
||
|
{
|
||
|
public interface IValidator
|
||
|
{
|
||
|
bool Check(string? input);
|
||
|
}
|
||
|
}
|