Add work plane property saving
This commit is contained in:
24
StructureHelperCommon/Models/WorkPlanes/WorkPlaneProperty.cs
Normal file
24
StructureHelperCommon/Models/WorkPlanes/WorkPlaneProperty.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user