2018-08-14 21:51:18 +02:00

17 lines
465 B
C#

using System;
using Prism.Events;
namespace MaterialModernWPF.Service
{
public class AdditionalMoments : CalculationPackage
{
public AdditionalMoments(IEventAggregator eventAggregator) : base(eventAggregator)
{
Name = "Additional moments";
CalculationViewType = typeof(DetailedGeometryView);
}
public override string Name { get; }
public override Type CalculationViewType { get; }
}
}