9 lines
244 B
C#
9 lines
244 B
C#
using FluentValidation;
|
|
|
|
public class AcknowledgeAlertRequestValidator : AbstractValidator<AcknowledgeAlertRequest>
|
|
{
|
|
public AcknowledgeAlertRequestValidator()
|
|
{
|
|
RuleFor(x => x.ClinicianId).NotEmpty().MaximumLength(200);
|
|
}
|
|
} |