zeroframework/Services/Identity/ZeroFramework.IdentityServer.API/Validations/Tenants/TenantUpdateRequestModelValidator.cs
2023-12-05 17:22:48 +08:00

16 lines
644 B
C#

using FluentValidation;
using ZeroFramework.IdentityServer.API.Models.Tenants;
namespace ZeroFramework.IdentityServer.API.Validations.Tenants
{
public class TenantUpdateRequestModelValidator : AbstractValidator<TenantUpdateRequestModel>
{
public TenantUpdateRequestModelValidator(ILogger<TenantUpdateRequestModel> logger)
{
logger.LogInformation(nameof(TenantCreateRequestModelValidator));
RuleFor(e => e.Id);
RuleFor(e => e.Name).NotNull().NotEmpty().Length(5, 15).Matches("^[a-z]+$");
RuleFor(e => e.DisplayName).NotNull().NotEmpty().Length(5, 15);
}
}
}