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

17 lines
348 B
C#
Raw Normal View History

2020-05-04 16:00:39 +02:00
using FluentValidation;
using zero.Core.Entities;
using zero.Core.Entities.Setup;
using zero.Core.Extensions;
namespace zero.Core.Validation
{
public class LanguageValidator : AbstractValidator<Language>
{
public LanguageValidator()
{
//RuleFor(x => x.Code).Length(2);
//RuleFor(x => x.Name).Length(2, 120);
}
}
}