namespace CAPI.Custom.Entities { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; public class InventoryItemResult { // Uppercased required values should be // handled in the database View public string AdditionalDescription { get; set; } public int Available { get; set; } public decimal AverageCost { get; set; } public string Bin { get; set; } public string BinLocation { get; set; } public string Brand { get; set; } public string Category { get; set; } public string CEPNumber { get; set; } public string Condition { get; set; } public string Description { get; set; } public int InventoryId { get; set; } public int ManagementId { get; set; } public int MasterId { get; set; } public string MasterNumber { get; set; } public string MinorCode { get; set; } public string PartNumber { get; set; } public string SubCategory { get; set; } public string UniqueNumber { get; set; } public string WarehouseLocation { get; set; } public decimal WeightKG { get; set; } } }