blob: 78e2f0b439e45e844bd6732f6bab6414708c388e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System.ComponentModel.DataAnnotations;
namespace Timeline.Models.Validation
{
public class PositiveIntegerAttribute : RangeAttribute
{
public PositiveIntegerAttribute() : base(1, int.MaxValue)
{
}
}
}
|