123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PaintDotNet.GeneralAnalysis.Special
- {
- class MeasureAreaResult
- {
- private String tag;
- private String graphName;
- private String polyphaseName;
- private Double polyphaseArea;
- private Double polyphaseRate;
- private Double polyphaseAllRate;
- private String level;
- public string Tag { get => tag; set => tag = value; }
- public string GraphName { get => graphName; set => graphName = value; }
- public string PolyphaseName { get => polyphaseName; set => polyphaseName = value; }
- public Double PolyphaseArea { get => polyphaseArea; set => polyphaseArea = value; }
- public Double PolyphaseRate { get => polyphaseRate; set => polyphaseRate = value; }
- public Double PolyphaseAllRate { get => polyphaseAllRate; set => polyphaseAllRate = value; }
- public string Level { get => level; set => level = value; }
- }
- }
|