15-12-2022 ~ 2
This commit is contained in:
20
ECM.JobRunner.Common/Models/Jobs/JobDefinition.vb
Normal file
20
ECM.JobRunner.Common/Models/Jobs/JobDefinition.vb
Normal file
@@ -0,0 +1,20 @@
|
||||
Imports System.ComponentModel.DataAnnotations
|
||||
|
||||
Public Class JobDefinition
|
||||
<Required>
|
||||
Public Id As Integer = -1
|
||||
|
||||
<Required>
|
||||
Public TypeId As Integer
|
||||
Public Type As JobType
|
||||
|
||||
<Required>
|
||||
<StringLength(250)>
|
||||
Public Name As String
|
||||
|
||||
<Required>
|
||||
<StringLength(250)>
|
||||
Public CronSchedule As String
|
||||
|
||||
Public Active As Boolean
|
||||
End Class
|
||||
Reference in New Issue
Block a user