Files
StockMan/StockMan.Data/DbModels/VLocationValModel.cs
T
2023-02-24 17:58:14 +01:00

23 lines
692 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace StockMan.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[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!;
}
}