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.Receiving { [Table("RRDetails")] public class RRDetails { [Key] public long RRDetailId { get; set; } public long PRDetailId { get; set; } public long RRId { get; set; } public long PODetailId { get; set; } public decimal Quantity { get; set; } public decimal QuantityReceived { get; set; } public decimal QtyRemaining { get; set; } public decimal UnitPrice { get; set; } public bool IsActive { get; set; } } }