zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/Validations/Devices/DeviceUpdateRequestModelValidator.cs

14 lines
465 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
using FluentValidation;
using ZeroFramework.DeviceCenter.Application.Models.Devices;
namespace ZeroFramework.DeviceCenter.Application.Validations.Devices
{
public class DeviceUpdateRequestModelValidator : AbstractValidator<DeviceUpdateRequestModel>
{
public DeviceUpdateRequestModelValidator()
{
RuleFor(m => m.Name).NotNull().NotEmpty().Length(5, 20);
RuleFor(m => m.Remark).MaximumLength(100);
}
}
}