using CPRNIMS.Infrastructure.Entities.Common; using CPRNIMS.Infrastructure.Models.Account; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Entities.Inventory { [Table("Lot")] public class Lot : CommonProperties { [Key] public int LotId { get; set; } public int InventoryId { get; set; } public string? LotName { get; set; } public string? LotTypeName { get; set; } public byte LotTypeId { get; set; } public string? UserId { get; set; } } }