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.

JobMetadata.cs 432B

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