公告板
版本库
filestore
活动
搜索
登录
宋俊
/
sbcLabSystem
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
init
songjun
2024-09-04
cc908053e0b5075fbfd27350b6da4b39bca9e550
[~songjun/sbcLabSystem.git]
/
PalGain.Core
/
Tasks
/
ITask.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace PalGain.Core.Tasks
{
/// <summary>
/// Interface that should be implemented by each task
/// </summary>
public partial interface ITask
{
/// <summary>
/// Execute task
/// </summary>
void Execute();
}
}