using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KellyReport_D.Model { internal class GenForecaseContext { public Microsoft.Office.Interop.Excel.Application Application { get; set; } public string[] MonthData { get; set; } public IList SalesForecastList { get; set; } public IList ProductForecastList { get; set; } public IList ClientContactList { get; set; } } }