Skip to content

Instantly share code, notes, and snippets.

@andyjansson
andyjansson / gist:6d51d18682f5a0d49c13
Last active August 29, 2015 14:09
LimitAttribute
public class LimitAttribute : ValidationAttribute
{
private int Limit {get; set;}
public LimitAttribute(int limit)
{
this.Limit = limit;
}
public override bool IsValid(object value)