28 lines
603 B
C#
28 lines
603 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace LiMan.GLS.DatabaseModels
|
|
{
|
|
public partial class AnagApplicazioni
|
|
{
|
|
#region Public Constructors
|
|
|
|
public AnagApplicazioni()
|
|
{
|
|
LicenzeAttives = new HashSet<LicenzeAttive>();
|
|
}
|
|
|
|
#endregion Public Constructors
|
|
|
|
#region Public Properties
|
|
|
|
public string Applicativo { get; set; }
|
|
public string Descrizione { get; set; }
|
|
|
|
public virtual ICollection<LicenzeAttive> LicenzeAttives { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |