Files
mapo-core/MP.Data/DbModels/TransizioneIngressiModel.cs
T
Samuele E. Locatelli 50d65eebaa MP.DATA, riorganizzazioni varie:
- renaming classi gestione DbModels in
- spostamento anagrafica flussi da auth a generale
2025-03-08 10:40:09 +01:00

17 lines
479 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace MP.Data.DbModels
{
[Table("TransizioneIngressi")]
public partial class TransizioneIngressiModel
{
public int IdxFamigliaIngresso { get; set; }
public int IdxMicroStato { get; set; }
public int ValoreIngresso { get; set; }
public int? IdxTipoEvento { get; set; }
public int NextIdxMicroStato { get; set; }
}
}