using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable namespace LiMan.GLS.DatabaseModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("AnagInstallazioni")] //[Index(nameof(Installazione), nameof(Active), nameof(DiskStatus))] public partial class AnagInstallazioni { public AnagInstallazioni() { LicenzeAttives = new HashSet(); } [Key] public string Installazione { get; set; } public string Descrizione { get; set; } public string Contatto { get; set; } public string Email { get; set; } public virtual ICollection LicenzeAttives { get; set; } } }