Newer
Older
GHFX_REFACTOR / FeaturesClassfyResult.cs
wxn on 9 Nov 2016 557 bytes 冗余代码整理
namespace Cyberpipe
{
    class FeaturesClassfyResult
    {
        public string layerName;
        public string groupFieldValue;
        public int ncount;
        public double sum;

        public FeaturesClassfyResult(string layerName, string groupFieldValue, int ncount, double sum)
        {
            this.layerName = layerName;
            this.groupFieldValue = groupFieldValue;
            this.ncount = ncount;
            this.sum = sum;
        
        }
        public FeaturesClassfyResult()
        {
            

        }
    }
}