lixiaojun
2024-09-19 1062dfc5f3d522a880e54d94eb87478c08013c96
Service/HStation.Service.Revit.Core/02-parter/00-core/RevitPosition.cs
@@ -29,27 +29,27 @@
        /// <param name="rhs"></param>
        public RevitPosition(RevitPosition rhs)
        {
            this.X = rhs.X;
            this.Y = rhs.Y;
            this.Z = rhs.Z;
            if (rhs != null)
            {
                this.X = rhs.X;
                this.Y = rhs.Y;
                this.Z = rhs.Z;
            }
        }
        /// <summary>
        /// X
        /// </summary>
        [JsonProperty("X", NullValueHandling = NullValueHandling.Ignore)]
        public double X { get; set; }
        /// <summary>
        /// Y
        /// </summary>
        [JsonProperty("Y", NullValueHandling = NullValueHandling.Ignore)]
        public double Y { get; set; }
        /// <summary>
        /// Z
        /// </summary>
        [JsonProperty("Z", NullValueHandling = NullValueHandling.Ignore)]
        public double Z { get; set; }
    }