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!;
public int PosR { get; set; } = 0;
public int PosC { get; set; } = 0;
///
/// data-ora ultimo aggiornamento
///
public DateTime DtLastUpd { get; set; }
[ForeignKey("ItemId")]
public virtual ItemModel ItemNav { get; set; } = null!;
public virtual LocationModel Location { get; set; } = null!;
}
}