Files
2021-10-08 13:13:11 +02:00

32 lines
913 B
C#

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