MeasureLengthResult.cs 653 B

12345678910111213141516171819202122232425
  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 MeasureLengthResult
  9. {
  10. private string tag;
  11. private string graphName;
  12. private string levelName;
  13. private double measureAvg;
  14. public string Tag { get => tag; set => tag = value; }
  15. public string GraphName { get => graphName; set => graphName = value; }
  16. public string LevelName { get => levelName; set => levelName = value; }
  17. public double MeasureAvg { get => measureAvg; set => measureAvg = value; }
  18. }
  19. }