ChatGroupValidator

This commit is contained in:
Artemy
2025-07-07 14:05:11 +07:00
parent 2cb6a93060
commit b027b20fc3
2 changed files with 17 additions and 0 deletions
@@ -0,0 +1,16 @@
using Govor.Core.Models;
namespace Govor.Core.Infrastructure.Validators;
public class ChatGroupValidator : IObjectValidator<ChatGroup>
{
public void Validate(ChatGroup objectToValidate)
{
throw new NotImplementedException();
}
public bool TryValidate(ChatGroup objectToValidate)
{
throw new NotImplementedException();
}
}