This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-nitride-cil/src/Nitride/Entities/CreateIndexEntitiesValidator.cs
2022-06-06 22:08:03 -05:00

15 lines
416 B
C#

using FluentValidation;
namespace Nitride.Entities;
public class CreateIndexEntitiesValidator<TIndexKey> : AbstractValidator<CreateIndexEntities<TIndexKey>>
where TIndexKey : notnull
{
public CreateIndexEntitiesValidator()
{
this.RuleFor(x => x.CreateIndexEntity).NotNull();
this.RuleFor(x => x.GetIndexKeys).NotNull();
this.RuleFor(x => x.UpdateIndexEntity).NotNull();
}
}