12 lines
302 B
C#
12 lines
302 B
C#
namespace Hutopy.Application.TodoItems.Commands.CreateTodoItem;
|
|
|
|
public class CreateTodoItemCommandValidator : AbstractValidator<CreateTodoItemCommand>
|
|
{
|
|
public CreateTodoItemCommandValidator()
|
|
{
|
|
RuleFor(v => v.Title)
|
|
.MaximumLength(200)
|
|
.NotEmpty();
|
|
}
|
|
}
|