mirror of
https://github.com/fergalmoran/SilkierQuartz.git
synced 2025-12-22 09:37:56 +00:00
11 lines
229 B
C#
11 lines
229 B
C#
using System.Collections.Generic;
|
|
using Quartz;
|
|
|
|
namespace QuartzHostedService
|
|
{
|
|
internal interface IScheduleJob
|
|
{
|
|
IJobDetail JobDetail { get; set; }
|
|
IEnumerable<ITrigger> Triggers { get; set; }
|
|
}
|
|
} |