Files
Samuele Locatelli a4dc1313fc StockMan Data:
- completata review iniziale datamodels
- esclusione viste (almeno x ora)
2023-02-06 20:07:03 +01:00

15 lines
365 B
C#

using System;
using System.Collections.Generic;
namespace StockMan.Data.DbModels
{
public partial class VLocationVal
{
public string LocationId { get; set; } = null!;
public decimal? TotVal { get; set; }
public int? NumArt { get; set; }
public int? TotCurr { get; set; }
public int? TotPend { get; set; }
}
}