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