yavsc/src/Yavsc.Server/Models/Billing/ExceptionSIREN.cs

12 lines
244 B
C#

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