| 1234567891011121314151617181920212223 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace PaintDotNet.GeneralAnalysis{    class PolyphaseAnalysisResult    {        private String graphName;        private String polyphaseName;        private Double polyphaseArea;        private Double polyphaseRate;        private Double polyphaseAllRate;        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; }    }}
 |