mirror of
https://github.com/fergalmoran/SilkierQuartz.git
synced 2025-12-25 19:18:50 +00:00
18 lines
349 B
C#
18 lines
349 B
C#
using Quartz;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AspNetCore31.Jobs
|
|
{
|
|
public class HelloJob : IJob
|
|
{
|
|
public Task Execute(IJobExecutionContext context)
|
|
{
|
|
Console.WriteLine("Hello");
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|
|
}
|