* User views its devices, from a /manage index link * Yavsc.Server resurection
9 lines
188 B
C#
9 lines
188 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Yavsc.Models.Process
|
|
{
|
|
public abstract class Action<TResult,TInput>
|
|
{
|
|
public abstract Task<TResult> GetTask(TInput data);
|
|
}
|
|
} |