zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/Validations/Devices/DeviceGroupUpdateRequestModelValidator.cs
2023-12-05 17:22:48 +08:00

14 lines
480 B
C#

using FluentValidation;
using ZeroFramework.DeviceCenter.Application.Models.Devices;
namespace ZeroFramework.DeviceCenter.Application.Validations.Devices
{
public class DeviceGroupUpdateRequestModelValidator : AbstractValidator<DeviceGroupUpdateRequestModel>
{
public DeviceGroupUpdateRequestModelValidator()
{
RuleFor(m => m.Name).NotNull().NotEmpty().Length(5, 20);
RuleFor(m => m.Remark).MaximumLength(100);
}
}
}