17 lines
354 B
C#
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;
|
|
}
|
|
} |