17 lines
367 B
C#
17 lines
367 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|
|||
|
|
namespace Yavsc.Model.Forms.Validation
|
|||
|
|
{
|
|||
|
|
public class Method
|
|||
|
|
{
|
|||
|
|
[Key]
|
|||
|
|
public string Name {get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// TODO localisation ...
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
[Required]
|
|||
|
|
public string ErrorMessage { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|