make mySettings protected

This commit is contained in:
2024-01-04 12:37:37 +01:00
parent 127332d6c8
commit 2b17cef71a
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>3.0.3</Version>
<Version>3.0.4</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />

View File

@@ -6,7 +6,7 @@ Public Class Settings
Implements ISettings
<JsonProperty(NameOf(Settings))>
Private ReadOnly mySettings As New Dictionary(Of String, IChildSettings)
Protected ReadOnly mySettings As New Dictionary(Of String, IChildSettings)
<JsonIgnore>
Public ReadOnly Property Settings As IReadOnlyCollection(Of IChildSettings) Implements ISettings.Settings