Files
StockMan/StockMan.Data/DbModels/ItemStockModel.cs
T
Samuele E. Locatelli d0337768f7 Rename DbModels
2023-02-06 23:05:25 +01:00

27 lines
821 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("ItemStock")]
public partial class ItemStockModel
{
public int Id { get; set; }
public int ItemId { get; set; }
public string LocationId { get; set; } = null!;
public int QtyConf { get; set; }
public string Note { get; set; } = null!;
/// <summary>
/// data-ora ultimo aggiornamento
/// </summary>
public DateTime DtLastUpd { get; set; }
public virtual ItemModel Item { get; set; } = null!;
public virtual LocationModel Location { get; set; } = null!;
}
}