using System.ComponentModel.DataAnnotations; namespace WebAPiUtils_test.DBO { public class MyDbo { [Required] public int MyInt { get; set; } [MinLength(2)] public string MyString { get; set; } } }