using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable namespace MP.AppAuth.Models { // // This is here so CodeMaid doesn't reorganize this document // [Table("AnagKeyValue")] public partial class AnagKeyValueModel { #region Public Properties [Key, Column("nomeVar")] public string NomeVar { get; set; } [Column("valInt")] public int? ValInt { get; set; } [Column("valFloat")] public double? ValFloat { get; set; } [Column("valString")] public string ValString { get; set; } [Column("descrizione")] public string Descrizione { get; set; } public override bool Equals(object obj) { if (!(obj is AnagKeyValueModel item)) return false; if (NomeVar != item.NomeVar) return false; if (ValInt != item.ValInt) return false; if (ValFloat!= item.ValFloat) return false; if (ValString != item.ValString) return false; if (Descrizione != item.Descrizione) return false; return true; } public override int GetHashCode() { return base.GetHashCode(); } #endregion Public Properties } }