19 lines
415 B
C#
19 lines
415 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
public partial class AnagraficaCausaliScarto
|
|
{
|
|
#region Public Properties
|
|
|
|
public string Causale { get; set; }
|
|
public string CssClass { get; set; }
|
|
public string Descrizione { get; set; }
|
|
public string Icona { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |