using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace JiangSu.Models { public class Img { public Img() { } public long id { set; get; } public string name { set; get; } public string path { set; get; } public string json { set; get; } public double x { set; get; } public double y { set; get; } public double z { set; get; } } }