using CPRNIMS.Infrastructure.Entities.Purchasing; 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("InventTransDetail")] public class InventTransDetail { [Key] public long InventTransDetailId { get; set; } public int InventTransId { get; set; } public byte TransTypeId { get; set; } public long RRDetailId { get; set; } public decimal QtyIn { get; set; } public decimal QtyOut { get; set; } public DateTime CreatedDate { get; set; } public string? Remarks { get; set; } public bool IsActive { get; set; } public long PRDetailId { get; set; } public PRDetails? PRDetails { get; set; } } }