using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable namespace GWMS.Data.DatabaseModels { /// /// Tabella AnKeyVal /// [Table("AnKeyVal")] public class AnKeyVal { #region Public Properties [Column("Descript", Order = 4)] public string Descript { get; set; } = ""; [Key, Column("Key", Order = 0), MaxLength(50)] public string Key { get; set; } [Column("ValFloat", Order = 2)] public int ValFloat { get; set; } = 0; [Column("ValInt", Order = 1)] public int ValInt { get; set; } = 0; [Column("ValString", Order = 3)] public string ValString { get; set; } = ""; #endregion Public Properties } }