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; } } }