18 lines
435 B
C#
18 lines
435 B
C#
using FluentValidation;
|
|
using YY.Admin.Services;
|
|
|
|
namespace YY.Admin.FluentValidation
|
|
{
|
|
public class LoginInputValidator : AbstractValidator<LoginInput>
|
|
{
|
|
public LoginInputValidator()
|
|
{
|
|
RuleFor(x => x.Username)
|
|
.NotEmpty().WithMessage("用户名不能为空");
|
|
|
|
RuleFor(x => x.Password)
|
|
.NotEmpty().WithMessage("密码不能为空");
|
|
}
|
|
}
|
|
}
|