mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-02-09 09:14:14 +00:00
7 lines
134 B
C#
7 lines
134 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace PodNoms.Api.Services.Jobs {
|
|
public interface IJob {
|
|
Task<bool> Execute();
|
|
}
|
|
} |