Files
wg_cpso/CaeModel/Steps/Controls/ResetStepControlParameter.cs
2026-03-25 18:20:24 +08:00

35 lines
995 B
C#

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