using StructureHelperCommon.Infrastructures.Interfaces; using StructureHelperCommon.Models.Shapes; using System; using System.Windows.Media; namespace StructureHelperCommon.Models.WorkPlanes { /// /// Implements properties of work plane /// public interface IWorkPlaneProperty : ISaveable, IRectangleShape { /// /// Size of grid of work plane /// double GridSize { get; set; } /// /// Thickness of axis line /// double AxisLineThickness { get; set; } /// /// Thickness of lines of main grid /// double GridLineThickness { get; set; } } }