using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PaintDotNet.GeneralAnalysis { public class CounterResult { public String GraphName { get; set; } public String PolyphaseName { get; set; } public int Count { get; set; } public double Area { get; set; } public double AreaPercent { get; set; } public double AreaContent { get; set; } public double CountPercent { get; set; } public double FullArea { get; set; } public CounterResult() { } } }