* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
9 lines
278 B
C#
9 lines
278 B
C#
using ErsatzTV.ViewModels;
|
|
using FluentValidation;
|
|
|
|
namespace ErsatzTV.Validators;
|
|
|
|
public class MultiCollectionEditViewModelValidator : AbstractValidator<MultiCollectionEditViewModel>
|
|
{
|
|
public MultiCollectionEditViewModelValidator() => RuleFor(c => c.Name).NotEmpty();
|
|
} |