Added validators for voice id & voice name

This commit is contained in:
Tom
2024-10-17 19:06:02 +00:00
parent 39c6442126
commit c082054606
4 changed files with 56 additions and 0 deletions

7
Validators/IValidator.cs Normal file
View File

@@ -0,0 +1,7 @@
namespace HermesSocketServer.Validators
{
public interface IValidator
{
bool Check(string? input);
}
}