mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-24 11:05:08 +01:00
Changed some types to List to avoid having to call ToList for insertion purposes
This commit is contained in:
parent
2b8f23dff4
commit
278cf89a88
@@ -56,13 +56,13 @@ namespace MediaBrowser.Model.Entities
|
||||
|
||||
public string Language { get; set; }
|
||||
public string Overview { get; set; }
|
||||
public IEnumerable<string> Taglines { get; set; }
|
||||
public List<string> Taglines { get; set; }
|
||||
|
||||
public IEnumerable<PersonInfo> People { get; set; }
|
||||
public List<PersonInfo> People { get; set; }
|
||||
|
||||
public IEnumerable<string> Studios { get; set; }
|
||||
public List<string> Studios { get; set; }
|
||||
|
||||
public IEnumerable<string> Genres { get; set; }
|
||||
public List<string> Genres { get; set; }
|
||||
|
||||
public string DisplayMediaType { get; set; }
|
||||
|
||||
|
||||
@@ -6,8 +6,8 @@ namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
public VideoType VideoType { get; set; }
|
||||
|
||||
public IEnumerable<SubtitleStream> Subtitles { get; set; }
|
||||
public IEnumerable<AudioStream> AudioStreams { get; set; }
|
||||
public List<SubtitleStream> Subtitles { get; set; }
|
||||
public List<AudioStream> AudioStreams { get; set; }
|
||||
|
||||
public int Height { get; set; }
|
||||
public int Width { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user