Files
Moonlight/Moonlight/App/Helpers/MustBeTrueAttribute.cs
2023-06-21 19:15:30 +02:00

17 lines
354 B
C#

using System.ComponentModel.DataAnnotations;
namespace Moonlight.App.Helpers;
[AttributeUsage(AttributeTargets.Property)]
public class MustBeTrueAttribute : ValidationAttribute
{
public override bool IsValid(object value)
{
if (value is bool boolValue)
{
return boolValue;
}
return false;
}
}