using System.ComponentModel.DataAnnotations; namespace Yavsc.Model.Forms.Validation { public class Method { [Key] public string Name {get; set; } /// /// TODO localisation ... /// /// [Required] public string ErrorMessage { get; set; } } }