diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-08 01:57:38 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-08 01:57:38 -0400 |
| commit | 5cd3276775461d96d912d47fbae6857b887b98d0 (patch) | |
| tree | 3743825b4db8587aa1cec132cf0e4752a8f8d17a /MediaBrowser.Controller/Entities/Photo.cs | |
| parent | 1591b16e003700d119732c2c7aa38d34583263dd (diff) | |
pass requested fields to data layer
Diffstat (limited to 'MediaBrowser.Controller/Entities/Photo.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Photo.cs | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/MediaBrowser.Controller/Entities/Photo.cs b/MediaBrowser.Controller/Entities/Photo.cs index 965616eb5..41e25e406 100644 --- a/MediaBrowser.Controller/Entities/Photo.cs +++ b/MediaBrowser.Controller/Entities/Photo.cs @@ -1,19 +1,11 @@ using MediaBrowser.Model.Drawing; -using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; namespace MediaBrowser.Controller.Entities { - public class Photo : BaseItem, IHasTaglines + public class Photo : BaseItem { - public List<string> Taglines { get; set; } - - public Photo() - { - Taglines = new List<string>(); - } - [IgnoreDataMember] public override bool SupportsLocalMetadata { |
