15 lines
398 B
C#
15 lines
398 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
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; }
|
|
}
|
|
}
|