CounterResult.cs 631 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PaintDotNet.GeneralAnalysis
  7. {
  8. public class CounterResult
  9. {
  10. public String GraphName { get; set; }
  11. public String PolyphaseName { get; set; }
  12. public int Count { get; set; }
  13. public double Area { get; set; }
  14. public double AreaPercent { get; set; }
  15. public double AreaContent { get; set; }
  16. public double CountPercent { get; set; }
  17. public double FullArea { get; set; }
  18. public CounterResult()
  19. {
  20. }
  21. }
  22. }