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

27 lines
870 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
{
public interface IExportFileCommand : IFileCommand
{
// Variables
// Properties
string FileName { get; set; }
// Constructors
// Methods
}
}