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