16 lines
427 B
C#
16 lines
427 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
[Table("TransizioneStati")]
|
|
public partial class TransizioneStatiModel
|
|
{
|
|
public int IdxFamiglia { get; set; } = 0;
|
|
public int IdxStato { get; set; } = 0;
|
|
public int IdxTipo { get; set; } = 0;
|
|
public int next_IdxStato { get; set; } = 0;
|
|
}
|
|
}
|