Added SineBevelAngle and XStep

This commit is contained in:
2023-05-10 08:58:32 -07:00
parent 7b204b9208
commit abf52afef9
3 changed files with 19 additions and 1 deletions

View File

@ -34,6 +34,9 @@ public class Description : IDescription, Shared.Properties.IDescription
public string UniqueId { get; set; }
public string Zone { get; set; }
//
public string SineBevelAngle { get; set; }
public string XStep { get; set; }
//
public string Number { get; set; }
public string Depth { get; set; }
public string Raw { get; set; }
@ -182,6 +185,9 @@ public class Description : IDescription, Shared.Properties.IDescription
Recipe = processData.Recipe,
Zone = processData.Zone,
//
SineBevelAngle = processData.SineBevelAngle,
XStep = processData.XStep,
//
UniqueId = detail.UniqueId,
HeaderUniqueId = detail.HeaderUniqueId,
Depth = detail.Depth,
@ -230,6 +236,9 @@ public class Description : IDescription, Shared.Properties.IDescription
UniqueId = nameof(UniqueId),
Zone = nameof(Zone),
//
SineBevelAngle = nameof(SineBevelAngle),
XStep = nameof(XStep),
//
Number = nameof(Number),
Depth = nameof(Depth),
Raw = nameof(Raw),