MustBeTrueAttribute.cs 457 B

12345678910111213141516
  1. using System.ComponentModel.DataAnnotations;
  2. namespace SharedKernel.Attributes;
  3. public class MustBeTrueAttribute : ValidationAttribute
  4. {
  5. protected override ValidationResult? IsValid(object? value, ValidationContext validationContext)
  6. {
  7. if (value is bool boolValue && boolValue)
  8. {
  9. return ValidationResult.Success;
  10. }
  11. return new ValidationResult(ErrorMessage ?? "값은 `true` 여야 합니다.");
  12. }
  13. }