17 lines
485 B
C#
17 lines
485 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
[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; }
|
|
}
|
|
}
|