using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CaeMesh; namespace CaeModel { [Serializable] public abstract class StepControlParameter { // Variables // Properties // Constructors // Methods public abstract void Reset(); } }