Files

15 lines
302 B
C#
Raw Permalink Normal View History

2024-04-27 22:36:16 +02:00
using FluentValidation;
namespace WatchIt.DTO.Models.Controllers.Genres.Genre;
2024-04-27 22:36:16 +02:00
public class GenreRequestValidator : AbstractValidator<GenreRequest>
{
#region CONSTRUCTORS
2024-04-27 22:36:16 +02:00
public GenreRequestValidator()
{
RuleFor(x => x.Name).MaximumLength(100);
}
#endregion
2024-04-27 22:36:16 +02:00
}