Files
wg_cpso/CaeModel/Steps/Controls/StepControlParameter.cs

26 lines
812 B
C#
Raw Permalink Normal View History

2026-03-25 18:20:24 +08:00
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();
}
}