a4dc1313fc
- completata review iniziale datamodels - esclusione viste (almeno x ora)
15 lines
365 B
C#
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; }
|
|
}
|
|
}
|