Exceptions SIREN

This commit is contained in:
2016-07-27 10:53:26 +02:00
parent f2afdb2bc9
commit 8167ce5091
19 changed files with 5095 additions and 40 deletions

View File

@ -0,0 +1,10 @@
using System.ComponentModel.DataAnnotations;
namespace Yavsc.Models.Billing
{
public class ExceptionSIREN {
[Key]
public string SIREN { get; set; }
}
}