10 lines
186 B
C#
10 lines
186 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|
|||
|
|
namespace Yavsc.Models.Billing
|
|||
|
|
{
|
|||
|
|
public class ExceptionSIREN {
|
|||
|
|
|
|||
|
|
[Key]
|
|||
|
|
public string SIREN { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|