This repository has been archived on 2025-11-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AUTS_OLD/AUTS_DataService/ServiceSettings.vb

17 lines
388 B
VB.net
Raw Normal View History

2024-03-11 16:32:52 +08:00
Imports System.Xml.Serialization
Imports UTS_Core.UTSModule.Service
<XmlInclude(GetType(ServiceSettings))>
<XmlInclude(GetType(ServiceTask))>
<XmlInclude(GetType(DbSyncServiceTask))>
<XmlInclude(GetType(ListenJsonFileServiceTask))>
Public Class ServiceSettings
Public Tasks As List(Of ServiceTask)
Sub New()
Tasks = New List(Of ServiceTask)()
End Sub
End Class