using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IStation.Model { /// /// /// public class ObjectMapInfo : ObjectMapInfo { /// /// /// public ObjectMapInfo() { } /// /// /// public ObjectMapInfo(ObjectMapInfo rhs) : base(rhs) { this.Position = rhs.Position; } /// /// /// public ObjectMapInfo(ObjectMapInfo rhs) : base(rhs) { this.Position = JsonHelper.Json2Object(rhs.Position); } /// /// /// public ObjectMapInfo(ObjectMapInfo rhs, T position) : base(rhs) { this.Position = position; } /// /// /// public new T Position { get; set; } } }