using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PRSA.Services.Models { public class TrackerModel { public int id { get; set; } public string brand_group { get; set; } public int item_number { get; set; } public string item_description { get; set; } public string pack_size { get; set; } public string stocking_type { get; set; } public decimal stock_cover { get; set; } public decimal stock_balance { get; set; } public decimal sales_forecast { get; set; } public decimal mtd_sales { get; set; } public decimal open_orders { get; set; } public decimal perc_sold_incl { get; set; } public decimal perc_sold_excl { get; set; } public int created_by { get; set; } public DateTime created_at { get; set; } public int updated_by { get; set; } public DateTime updated_at { get; set; } } }