18 lines
359 B
C#
18 lines
359 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class AzioniUL
|
|
{
|
|
#region Public Properties
|
|
|
|
public string Azione { get; set; }
|
|
public string Class { get; set; }
|
|
public string Descrizione { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |