21 lines
612 B
C#
21 lines
612 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")]
|
|
public class TransizioneIngressiModel
|
|
{
|
|
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;
|
|
}
|
|
}
|