clean up for mailing

This commit is contained in:
Paul Schneider 2021-06-03 15:12:29 +01:00
commit 72bf0f458d
14 changed files with 2934 additions and 116 deletions

View file

@ -1,10 +1,11 @@
using System.ComponentModel.DataAnnotations;
using Yavsc.Attributes.Validation;
namespace Yavsc.Models.Billing
{
public class ExceptionSIREN {
[Key,MinLength(9)]
[Key, YaStringLength(9, 9)]
public string SIREN { get; set; }
}
}
}