Files
wg_cpso/CPSO/Commands/00_Base/PostprocessCommand.cs

32 lines
952 B
C#
Raw 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 System.Reflection;
using CaeGlobals;
using System.Runtime.Serialization;
namespace CPSO.Commands
{
[Serializable]
public abstract class PostprocessCommand : Command
{
// Variables
// Properties
// Constructors
public PostprocessCommand(string name)
: base(name)
{
}
// Methods
}
}