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,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
namespace StructureHelperCommon.Models.WorkPlanes
{
public class WorkPlaneProperty : IWorkPlaneProperty
{
public Guid Id { get; }
public double GridSize { get; set; } = 0.05;
public double Height { get; set; } = 1.2;
public double Width { get; set; } = 1.2;
public double AxisLineThickness { get; set; } = 2;
public double GridLineThickness { get; set; } = 0.25;
public WorkPlaneProperty(Guid id)
{
Id = id;
}
}
}