Exceptions SIREN

This commit is contained in:
Paul Schneider 2016-07-27 10:53:26 +02:00
commit 46295cc25e
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; }
}
}