* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
15 lines
415 B
C#
15 lines
415 B
C#
using ErsatzTV.ViewModels;
|
|
using FluentValidation;
|
|
|
|
namespace ErsatzTV.Validators;
|
|
|
|
public class
|
|
RemoteMediaSourcePathReplacementEditViewModelValidator : AbstractValidator<
|
|
RemoteMediaSourcePathReplacementEditViewModel>
|
|
{
|
|
public RemoteMediaSourcePathReplacementEditViewModelValidator()
|
|
{
|
|
RuleFor(vm => vm.RemotePath).NotEmpty();
|
|
RuleFor(vm => vm.LocalPath).NotEmpty();
|
|
}
|
|
} |