Skip to content

Instantly share code, notes, and snippets.

@brettsam
Created March 9, 2021 15:00
Show Gist options
  • Save brettsam/a8fd670807c07159164b83de57909f45 to your computer and use it in GitHub Desktop.
Save brettsam/a8fd670807c07159164b83de57909f45 to your computer and use it in GitHub Desktop.
TimerInfo
public class ScheduleStatus
{
public DateTime Last { get; set; }
public DateTime Next { get; set; }
public DateTime LastUpdated { get; set; }
}
public class TimerInfo
{
public ScheduleStatus? ScheduleStatus { get; set; }
public bool IsPastDue { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment