Add work plane property saving

This commit is contained in:
Evgeny Redikultsev
2025-01-25 19:21:34 +05:00
parent bbc6ade283
commit 3a946a29bc
37 changed files with 765 additions and 324 deletions

View File

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