You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920
  1. using System;
  2. namespace MVCTemplate.Quartz
  3. {
  4. public class JobMetadata
  5. {
  6. public Guid JobId { get; set; }
  7. public Type JobType { get; }
  8. public string JobName { get; }
  9. public string CronExpression { get; }
  10. public JobMetadata(Type jobType,
  11. string cronExpression)
  12. {
  13. //JobId = Id;
  14. JobType = jobType;
  15. //JobName = jobName;
  16. CronExpression = cronExpression;
  17. }
  18. }
  19. }