MeasureAreaResult.cs 1.0 KB

123456789101112131415161718192021222324252627
  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.Special
  7. {
  8. class MeasureAreaResult
  9. {
  10. private String tag;
  11. private String graphName;
  12. private String polyphaseName;
  13. private Double polyphaseArea;
  14. private Double polyphaseRate;
  15. private Double polyphaseAllRate;
  16. private String level;
  17. public string Tag { get => tag; set => tag = value; }
  18. public string GraphName { get => graphName; set => graphName = value; }
  19. public string PolyphaseName { get => polyphaseName; set => polyphaseName = value; }
  20. public Double PolyphaseArea { get => polyphaseArea; set => polyphaseArea = value; }
  21. public Double PolyphaseRate { get => polyphaseRate; set => polyphaseRate = value; }
  22. public Double PolyphaseAllRate { get => polyphaseAllRate; set => polyphaseAllRate = value; }
  23. public string Level { get => level; set => level = value; }
  24. }
  25. }