From 45af089e3f2021857bcc07ac653e01f6f2cf2ee5 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Mon, 19 Sep 2022 20:00:56 +0200 Subject: [PATCH] Aggiunta preliminare modello Dossiers --- MP.Data/DatabaseModels/Dossiers.cs | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 MP.Data/DatabaseModels/Dossiers.cs diff --git a/MP.Data/DatabaseModels/Dossiers.cs b/MP.Data/DatabaseModels/Dossiers.cs new file mode 100644 index 00000000..9289bd6e --- /dev/null +++ b/MP.Data/DatabaseModels/Dossiers.cs @@ -0,0 +1,29 @@ +using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +#nullable disable + +namespace MP.Data.DatabaseModels +{ + [Table("Dossiers")] + public partial class Dossiers + { + #region Public Properties + + [MaxLength(50)] + public string IdxMacchina { get; set; } + + public DateTime DtRif { get; set; } + + public int IdxODL { get; set; } + + [MaxLength(50)] + public string DataType { get; set; } + + public string Valore { get; set; } + + + #endregion Public Properties + } +} \ No newline at end of file