source:
FarmatikoServices/Services/JobDTO/JobSchedule.cs
Last change on this file was f554983, checked in by , 4 years ago | |
---|---|
|
|
File size: 405 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Text; |
4 | |
5 | namespace FarmatikoServices.Services.JobDTO |
6 | { |
7 | public class JobSchedule |
8 | { |
9 | public JobSchedule(Type jobType, string cronExpression) |
10 | { |
11 | JobType = jobType; |
12 | CronExpression = cronExpression; |
13 | } |
14 | |
15 | public Type JobType { get; } |
16 | public string CronExpression { get; } |
17 | } |
18 | } |
19 |
Note:
See TracBrowser
for help on using the repository browser.