fix: index entity keys are optional

This commit is contained in:
Dylan R. E. Moonfire 2022-06-06 22:08:03 -05:00
parent ee7228b601
commit 3a009b05cf

View file

@ -10,6 +10,5 @@ public class CreateIndexEntitiesValidator<TIndexKey> : AbstractValidator<CreateI
this.RuleFor(x => x.CreateIndexEntity).NotNull();
this.RuleFor(x => x.GetIndexKeys).NotNull();
this.RuleFor(x => x.UpdateIndexEntity).NotNull();
this.RuleFor(x => x.GetIndexEntityKey).NotNull();
}
}