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("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!;
///
/// data-ora ultimo aggiornamento
///
public DateTime DtLastUpd { get; set; }
public virtual ItemModel Item { get; set; } = null!;
public virtual LocationModel Location { get; set; } = null!;
}
}