Advertisement
Guest User

Untitled

a guest
Apr 9th, 2020
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.57 KB | None | 0 0
  1.  public class Schedule
  2.     {
  3.         public int JobId { get; set; }
  4.         public string JobName { get; set; }
  5.         public string JobDesc { get; set; }
  6.         public string JobGroup { get; set; }
  7.         public DateTime Prevfire { get; set; }
  8.         public DateTime Nextfire { get; set; }
  9.         public string Cron { get; set; }
  10.         public string Pars { get; set; }
  11.         public string Dsmail { get; set; }
  12.         public bool NotifyStart { get; set; }
  13.         public bool NotifyFailure {get;set;}
  14.         public bool NotifySuccess { get; set; }
  15.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement