Fix some over-accessible fields

This commit is contained in:
Matt Nadareski
2024-10-19 23:17:37 -04:00
parent 16f173099d
commit 4d5ac92125
15 changed files with 142 additions and 154 deletions

View File

@@ -11,14 +11,14 @@ namespace SabreTools.Core
/// <summary>
/// Set of mapping strings
/// </summary>
public string[] Mappings { get; private set; }
public string[] Mappings { get; }
/// <summary>
/// Constructor
/// </summary>
public MappingAttribute(params string[] mappings)
{
this.Mappings = mappings;
Mappings = mappings;
}
}
}