Files
Mapo-IOB/SMGen.Data/DbModels/TransizioneIngressiModelTemp.cs
2023-07-26 12:26:41 +02:00

21 lines
620 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SMGen.Data.DbModels
{
[Table("TransizioneIngressi_Chk")]
public class TransizioneIngressiModelTemp
{
public int IdxFamigliaIngresso { get; set; } = 0;
public int IdxMicroStato { get; set; } = 0;
public int ValoreIngresso { get; set; } = 0;
public int IdxTipoEvento { get; set; } = 0;
public int next_IdxMicroStato { get; set; } = 0;
}
}