mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Fix some over-accessible fields
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user