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

@@ -24,7 +24,7 @@ namespace MediaBrowser.Common.Plugins
Overview = string.Empty;
TargetAbi = string.Empty;
Version = string.Empty;
Assemblies = new List<string>();
Assemblies = Array.Empty<string>();
}
/// <summary>
@@ -112,6 +112,6 @@ namespace MediaBrowser.Common.Plugins
/// Paths are considered relative to the plugin folder.
/// </summary>
[JsonPropertyName("assemblies")]
public IList<string> Assemblies { get; set; }
public IReadOnlyList<string> Assemblies { get; set; }
}
}