You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
419 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Mesnac.Action.Base;
namespace Mesnac.Action.Feeding.Sys
{
/// <summary>
/// 清除历史存盘数据
///
/// </summary>
public class ClearHistoryDataAction : FeedingAction , IAction
{
public void Run(RuntimeParameter runtime)
{
base.RunIni(runtime);
}
}
}