a4dc1313fc
- completata review iniziale datamodels - esclusione viste (almeno x ora)
14 lines
319 B
C#
14 lines
319 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace StockMan.Data.DbModels
|
|
{
|
|
public partial class VItemStockAct
|
|
{
|
|
public int ItemId { get; set; }
|
|
public string LocationId { get; set; } = null!;
|
|
public int? TotQta { get; set; }
|
|
public int? TotPend { get; set; }
|
|
}
|
|
}
|