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