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

11 lines
244 B
C#
Raw Normal View History

2016-07-27 10:53:26 +02:00
using System.ComponentModel.DataAnnotations;
2021-06-03 15:12:29 +01:00
using Yavsc.Attributes.Validation;
2016-07-27 10:53:26 +02:00
namespace Yavsc.Models.Billing
{
public class ExceptionSIREN {
2021-06-03 15:12:29 +01:00
[Key, YaStringLength(9, 9)]
2016-07-27 10:53:26 +02:00
public string SIREN { get; set; }
}
2021-06-03 15:12:29 +01:00
}