using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace NEIntelligentControl2.Models.BoostStation
{
///
/// 升压站控件信息
///
public class BoostStationPointInfo
{
///
/// 坐标
///
public Point Coordinate { get; set; }
///
/// 类型
///
public string Type { get; set; }
///
/// 数据标签
///
public string DataTag { get; set; }
///
/// 中心点坐标
///
public Point CenterCoordinate { get; set; }
///
/// 角度
///
public int Angle { get; set; }
///
/// 数据标签与名称
///
public string Info { get; set; }
///
/// 缩放比例
///
public int Proportion { get; set; }
///
/// 是否取反
///
public bool IsNegate { get; set; }
}
}