31 lines
948 B
C#
31 lines
948 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
#nullable disable
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
//[Table("DiarioDichiarazioni")]
|
|
public partial class RegistroDichiarazioniModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int IdxDich { get; set; }
|
|
|
|
public DateTime DtRec { get; set; } = DateTime.Now;
|
|
public string IdxMacchina { get; set; } = "";
|
|
public string TagCode { get; set; } = "";
|
|
public int MatrOpr { get; set; }
|
|
public string ValString { get; set; } = "";
|
|
public string CognNome { get; set; } = "";
|
|
public string CssClass { get; set; } = "";
|
|
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |