Changed some types to List to avoid having to call ToList for insertion purposes

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-08-24 08:45:54 -04:00
parent 2b8f23dff4
commit 278cf89a88
7 changed files with 31 additions and 31 deletions

View File

@@ -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; }