38 lines
1.0 KiB
C#
38 lines
1.0 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
#nullable disable
|
|
|
|
namespace LiMan.DB.DBModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
//[Index(nameof(Installazione), nameof(Active), nameof(DiskStatus))]
|
|
[Table("Installazioni")]
|
|
public partial class InstallazioneModel
|
|
{
|
|
//public Installazione()
|
|
//{
|
|
// LicenzeAttives = new HashSet<Licenza>();
|
|
//}
|
|
|
|
[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<Licenza> LicenzeAttives { get; set; }
|
|
}
|
|
}
|