36 lines
855 B
C#
36 lines
855 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace LiMan.DB.DBModels
|
|
{
|
|
[Table("Applicativi")]
|
|
public partial class ApplicativoModel
|
|
{
|
|
#region Public Constructors
|
|
|
|
//public Applicativo()
|
|
//{
|
|
// LicenzeAttives = new HashSet<Licenza>();
|
|
//}
|
|
|
|
#endregion Public Constructors
|
|
|
|
#region Public Properties
|
|
|
|
[Key]
|
|
[MaxLength(50)]
|
|
public string CodApp { get; set; }
|
|
|
|
[MaxLength(250)]
|
|
public string Descrizione { get; set; }
|
|
|
|
//public virtual ICollection<Licenza> LicenzeAttives { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |