I am trying to figure out a way to require a checkboxfor to be TRUE (for an "accept user agreement" style form). I want to do this via some type of data annotation (property decorator) so that the validation carries over to the client-side. Something that looks like this, for example:
[IsTrueAttribute]
[DisplayName("Accept Terms")]
public bool AcceptTerms { get; set; }