Files
mixtape/zero.Core/Validation/PageValidator.cs
T

14 lines
214 B
C#
Raw Normal View History

2020-09-11 16:36:36 +02:00
using FluentValidation;
using zero.Core.Api;
using zero.Core.Entities;
namespace zero.Core.Validation
{
2021-05-04 17:23:52 +02:00
public class PageValidator : ZeroValidator<Page>
2020-09-11 16:36:36 +02:00
{
public PageValidator()
{
}
}
}