50d65eebaa
- renaming classi gestione DbModels in - spostamento anagrafica flussi da auth a generale
16 lines
421 B
C#
16 lines
421 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace MP.Data.DbModels
|
|
{
|
|
[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;
|
|
}
|
|
}
|