14 lines
214 B
C#
14 lines
214 B
C#
using FluentValidation;
|
|
using zero.Core.Api;
|
|
using zero.Core.Entities;
|
|
|
|
namespace zero.Core.Validation
|
|
{
|
|
public class PageValidator : ZeroValidator<Page>
|
|
{
|
|
public PageValidator()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |