571ac2cea8
- inizio pagina gest fluxLog e pareto eventi - ok visualizzazione ultimo mese
26 lines
733 B
C#
26 lines
733 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("AnagKeyValue")]
|
|
public partial class AnagKeyValueModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key]
|
|
public string nomeVar { get; set; } = "";
|
|
public int valInt { get; set; } = 0;
|
|
public double valFloat { get; set; } = 0;
|
|
public string valString { get; set; } = "";
|
|
public string descrizione { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |