This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
UpTool2/UpTool2/Task/IAppTask.cs
CreepyCrafter24 c186afa8b4 Stage changes
2020-04-08 20:57:50 +02:00

12 lines
160 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace UpTool2.Task
{
interface IAppTask
{
public void Run();
}
}