refactor namespaces and imports (#670)
* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
This commit is contained in:
@@ -1,16 +1,15 @@
|
||||
using ErsatzTV.ViewModels;
|
||||
using FluentValidation;
|
||||
|
||||
namespace ErsatzTV.Validators
|
||||
namespace ErsatzTV.Validators;
|
||||
|
||||
public class
|
||||
RemoteMediaSourcePathReplacementEditViewModelValidator : AbstractValidator<
|
||||
RemoteMediaSourcePathReplacementEditViewModel>
|
||||
{
|
||||
public class
|
||||
RemoteMediaSourcePathReplacementEditViewModelValidator : AbstractValidator<
|
||||
RemoteMediaSourcePathReplacementEditViewModel>
|
||||
public RemoteMediaSourcePathReplacementEditViewModelValidator()
|
||||
{
|
||||
public RemoteMediaSourcePathReplacementEditViewModelValidator()
|
||||
{
|
||||
RuleFor(vm => vm.RemotePath).NotEmpty();
|
||||
RuleFor(vm => vm.LocalPath).NotEmpty();
|
||||
}
|
||||
RuleFor(vm => vm.RemotePath).NotEmpty();
|
||||
RuleFor(vm => vm.LocalPath).NotEmpty();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user