using System.Windows; namespace Muchinfo.MTPClient.Data.Model.Config { /// /// 用户布局 /// public class UserLayout { ///// ///// 行情/图表容器GridLength ///// ///// The length of the quote grid. //[JsonIgnore] //public RowDefinition QuoteGridRow { get; set; } public double QuoteGridRowLengthValue { get; set; } public GridUnitType QuoteGridRowLengthUnitType { get; set; } public double QuoteGridRowMinHeight { get; set; } ///// ///// 查询容器GridLength ///// ///// The length of the query grid. //[JsonIgnore] //public RowDefinition QueryGridRow { get; set; } public double QueryGridRowLengthValue { get; set; } public GridUnitType QueryGridRowLengthUnitType { get; set; } public double QueryGridRowMinHeight { get; set; } } }