Many nice features
This commit is contained in:
17
MaterialModernWPF/Service/DetailedGeometryPackage.cs
Normal file
17
MaterialModernWPF/Service/DetailedGeometryPackage.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using Prism.Events;
|
||||
|
||||
namespace MaterialModernWPF.Service
|
||||
{
|
||||
public class DetailedGeometryPackage : CalculationPackage
|
||||
{
|
||||
public DetailedGeometryPackage(IEventAggregator eventAggregator) : base(eventAggregator)
|
||||
{
|
||||
Name = "Detailed Geometry";
|
||||
CalculationViewType = typeof(DetailedGeometryView);
|
||||
}
|
||||
|
||||
public override string Name { get; }
|
||||
public override Type CalculationViewType { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user