Correct style inconsistencies

This commit is contained in:
AmbulantRex
2023-04-01 04:59:07 -06:00
parent 677b1f8e34
commit a944352aa8
5 changed files with 11 additions and 8 deletions

View File

@@ -80,6 +80,6 @@ namespace MediaBrowser.Model.Updates
/// Gets or sets the assemblies whitelist for this version.
/// </summary>
[JsonPropertyName("assemblies")]
public IList<string> Assemblies { get; set; } = Array.Empty<string>();
public IReadOnlyList<string> Assemblies { get; set; } = Array.Empty<string>();
}
}