source: FarmatikoServices/Services/JobDTO/JobSchedule.cs@ f554983

Last change on this file since f554983 was f554983, checked in by Dimitar Slezenkovski <dslezenkovski@…>, 3 years ago

Add cron job for updating data, with Quartz.NET

  • Property mode set to 100644
File size: 405 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace 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.