Files
mapo-core/MP.AppAuth/Models/AnagraficaMicroStati.cs
2021-09-18 10:55:24 +02:00

18 lines
381 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.AppAuth.Models
{
public partial class AnagraficaMicroStati
{
#region Public Properties
public string Descrizione { get; set; }
public int IdxFamigliaIngresso { get; set; }
public int IdxMicroStato { get; set; }
#endregion Public Properties
}
}