diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-04-18 01:53:39 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-04-18 01:53:39 -0400 |
| commit | 4d7d8961b44aadd1d1c8f84bedd5d5ff9508d876 (patch) | |
| tree | 2d6390aa6429d6ef37191235f2140611262186da /MediaBrowser.Controller | |
| parent | 6a66aef608a0caa567f603edbd9a4e3466fda469 (diff) | |
update encoding detection
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Movies/Movie.cs | 9 | ||||
| -rw-r--r-- | MediaBrowser.Controller/Entities/Person.cs | 6 |
2 files changed, 0 insertions, 15 deletions
diff --git a/MediaBrowser.Controller/Entities/Movies/Movie.cs b/MediaBrowser.Controller/Entities/Movies/Movie.cs index ce671a2dc..371be3dfe 100644 --- a/MediaBrowser.Controller/Entities/Movies/Movie.cs +++ b/MediaBrowser.Controller/Entities/Movies/Movie.cs @@ -27,25 +27,16 @@ namespace MediaBrowser.Controller.Entities.Movies RemoteTrailers = new List<MediaUrl>(); LocalTrailerIds = new List<Guid>(); RemoteTrailerIds = new List<Guid>(); - Taglines = new List<string>(); } public string AwardSummary { get; set; } - public float? Metascore { get; set; } - public List<Guid> LocalTrailerIds { get; set; } public List<Guid> RemoteTrailerIds { get; set; } public List<MediaUrl> RemoteTrailers { get; set; } /// <summary> - /// Gets or sets the taglines. - /// </summary> - /// <value>The taglines.</value> - public List<string> Taglines { get; set; } - - /// <summary> /// Gets or sets the name of the TMDB collection. /// </summary> /// <value>The name of the TMDB collection.</value> diff --git a/MediaBrowser.Controller/Entities/Person.cs b/MediaBrowser.Controller/Entities/Person.cs index b68681d36..005fb2014 100644 --- a/MediaBrowser.Controller/Entities/Person.cs +++ b/MediaBrowser.Controller/Entities/Person.cs @@ -15,12 +15,6 @@ namespace MediaBrowser.Controller.Entities /// </summary> public class Person : BaseItem, IItemByName, IHasLookupInfo<PersonLookupInfo> { - /// <summary> - /// Gets or sets the place of birth. - /// </summary> - /// <value>The place of birth.</value> - public string PlaceOfBirth { get; set; } - public override List<string> GetUserDataKeys() { var list = base.GetUserDataKeys(); |
