add global setting attribute

This commit is contained in:
Jonathan Jenne
2019-04-29 10:39:45 +02:00
parent 528a341f7a
commit ecdf35f6fe
3 changed files with 39 additions and 22 deletions

View File

@@ -1,9 +1,22 @@
Public Class ConfigAttributes
''' <summary>
''' The primary connection string. Will not be saved to userconfig.
''' </summary>
Public Class ConnectionStringAttribute
Inherits Attribute
End Class
''' <summary>
''' The test connection string. Will not be saved to userconfig.
''' </summary>
Public Class ConnectionStringTestAttribute
Inherits Attribute
End Class
''' <summary>
''' Global setting. Will not be saved to userconfig.
''' </summary>
Public Class GlobalSettingAttribute
Inherits Attribute
End Class
End Class