Added validators for voice id & voice name
This commit is contained in:
10
Validators/VoiceIdValidator.cs
Normal file
10
Validators/VoiceIdValidator.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.Text.RegularExpressions;
|
||||
|
||||
namespace HermesSocketServer.Validators
|
||||
{
|
||||
public class VoiceIdValidator : RegexValidator
|
||||
{
|
||||
public VoiceIdValidator()
|
||||
: base("^[a-z0-9]{25}$", RegexOptions.IgnoreCase, 25, 25) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user