using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMIS.ViewModel.TeachingMaterial { public class StockInDetailView { public Guid StockInDetailID { get; set; } public Guid? StockInID { get; set; } public Guid? LibraryID { get; set; } public Guid? TeachingMaterialPoolID { get; set; } public int? Quantity { get; set; } public decimal? DiscountPrice { get; set; } public decimal? Discount { get; set; } } }