Jobs: Update to use Job Runner Table

This commit is contained in:
Jonathan Jenne
2022-11-24 14:24:59 +01:00
parent 36fe39ee66
commit a8862709d8
4 changed files with 56 additions and 47 deletions

View File

@@ -1,8 +1,17 @@
Imports System.Collections.Generic
Public Class JobConfig
Public Enabled As Boolean
Public StartImmediately As Boolean
Public CronExpression As String
Public Arguments As Dictionary(Of String, String)
Public Property Name As JobType
Public Property Enabled As Boolean = False
Public Property StartWithoutDelay As Boolean = False
Public Property CronSchedule As String = ""
Public Property ArgsString As String = ""
Public Property Args As New Dictionary(Of String, String)
Public Enum JobType
ADSync
GraphQL
Test
End Enum
End Class