2022-12-01 16:37:39 +01:00

10 lines
368 B
VB.net

Namespace Scheduler
Public Class JobConfig
Public Property Enabled As Boolean = False
Public Property StartWithoutDelay As Boolean = False
Public Property Name As String = "Unnamed Job"
Public Property CronSchedule As String = ""
Public Property Arguments As New Dictionary(Of String, String)
End Class
End Namespace