using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Kingo.Plugin.BGResultManager.Model { public class BBPCModel { public int ReportName { get; set; } public List Columns { get; set; } } public class PCColumnModel { public int ColumnIndex { get; set; } public double DiffValue { get; set; } public List Ids { get; set; } public bool IsActive { get; set; } } }