using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace ExportMap.Models { /// /// XYZ参数 /// public class XYZArgs { public XYZArgs() { ids = new List(); } /// /// 地图最小级别 /// public int min { set; get; } /// /// 地图最大级别 /// public int max { set; get; } /// /// 数据目录编码 /// public string dircode { set; get; } /// /// 元数据ID集合 /// public List ids { set; get; } } }