50d65eebaa
- renaming classi gestione DbModels in - spostamento anagrafica flussi da auth a generale
19 lines
578 B
C#
19 lines
578 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace MP.Data.DbModels
|
|
{
|
|
[Keyless]
|
|
public partial class InveSessTotLotModel
|
|
{
|
|
public int InveSessID { get; set; }
|
|
public int MagID { get; set; }
|
|
public string CodMag { get; set; }
|
|
public string DescMag { get; set; }
|
|
public string Lotto { get; set; }
|
|
public string CodArticolo { get; set; }
|
|
public string DescrArt { get; set; }
|
|
public int NumColli { get; set; }
|
|
public decimal TotLotto { get; set; }
|
|
public bool IsForced { get; set; }
|
|
}
|
|
} |