18 lines
381 B
C#
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
|
|
}
|
|
} |