yavsc/Yavsc/Models/Billing/ExceptionSIREN.cs

10 lines
199 B
C#

8 years ago
using System.ComponentModel.DataAnnotations;
namespace Yavsc.Models.Billing
{
public class ExceptionSIREN {
[Key,MinLength(9)]
8 years ago
public string SIREN { get; set; }
}
}