mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
12 lines
352 B
C#
12 lines
352 B
C#
using FluentValidation;
|
|
|
|
namespace Artemis.UI.Screens.SurfaceEditor.Dialogs
|
|
{
|
|
public class SurfaceCreateViewModelValidator : AbstractValidator<SurfaceCreateViewModel>
|
|
{
|
|
public SurfaceCreateViewModelValidator()
|
|
{
|
|
RuleFor(m => m.SurfaceName).NotEmpty().WithMessage("Layout name may not be empty");
|
|
}
|
|
}
|
|
} |