Files
podnoms/server/Services/Jobs/IJob.cs
2018-05-13 00:43:16 +01:00

7 lines
134 B
C#

using System.Threading.Tasks;
namespace PodNoms.Api.Services.Jobs {
public interface IJob {
Task<bool> Execute();
}
}