12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PaintDotNet.GeneralAnalysis.Special
- {
- class MeasureLengthResult
- {
- private string tag;
- private string graphName;
- private string levelName;
- private double measureAvg;
- public string Tag { get => tag; set => tag = value; }
- public string GraphName { get => graphName; set => graphName = value; }
- public string LevelName { get => levelName; set => levelName = value; }
- public double MeasureAvg { get => measureAvg; set => measureAvg = value; }
- }
- }
|