Projektdateien hinzufügen.
This commit is contained in:
20
Pilz.Configuration/SettingsBase.vb
Normal file
20
Pilz.Configuration/SettingsBase.vb
Normal file
@@ -0,0 +1,20 @@
|
||||
Imports Newtonsoft.Json
|
||||
|
||||
Public MustInherit Class SettingsBase
|
||||
|
||||
Public Sub New()
|
||||
ResetValues()
|
||||
End Sub
|
||||
|
||||
<JsonIgnore>
|
||||
Friend _settingsManager As ISettingsManager
|
||||
<JsonIgnore>
|
||||
Public ReadOnly Property SettingsManager As ISettingsManager
|
||||
Get
|
||||
Return _settingsManager
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Public MustOverride Sub ResetValues()
|
||||
|
||||
End Class
|
||||
Reference in New Issue
Block a user