Newer
Older
GHFX_REFACTOR / FeaturesClassfyResult.cs
wxn on 2 Nov 2016 644 bytes 提交
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

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()
        {
            

        }
    }
}