Files
WatchIt/WatchIt.DTO/Models/Controllers/Genres/Genre/GenreRequestValidator.cs

15 lines
302 B
C#
Raw 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
}