using System; using System.Collections.Generic; using System.Text; namespace Ips.Library.Entity { public class GdopResult { public List Lines { get; set; } = new List(); public GdopResult() { } public GdopResult(string result) { Lines = GeoLineGroup.FromListString(result); } } }