using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; namespace StockMan.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("vLocationVal")] public partial class VLocationValModel { public string LocationId { get; set; } = null!; public decimal TotVal { get; set; } = 0.00M; public int NumArt { get; set; } = 0; public int TotCurr { get; set; } = 0; public int TotPend { get; set; } = 0; [ForeignKey("LocationId")] public virtual LocationModel LocationNav { get; set; } = null!; } }