diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-03-19 23:38:02 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-03-19 23:38:02 -0400 |
| commit | 9b1cad3ce05fe68b01750962b29bf5529050dd67 (patch) | |
| tree | 3cfcc714d1944353f11afdfe2201e466207c262d /MediaBrowser.Controller/Entities/Trailer.cs | |
| parent | bcda2a8f0eaa304a946da29485cbc695de4b1519 (diff) | |
update trailers
Diffstat (limited to 'MediaBrowser.Controller/Entities/Trailer.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Trailer.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Trailer.cs b/MediaBrowser.Controller/Entities/Trailer.cs index a4ac34545..43d95a8d3 100644 --- a/MediaBrowser.Controller/Entities/Trailer.cs +++ b/MediaBrowser.Controller/Entities/Trailer.cs @@ -35,6 +35,12 @@ namespace MediaBrowser.Controller.Entities public List<string> Keywords { get; set; } + [IgnoreDataMember] + public bool IsLocalTrailer + { + get { return TrailerTypes.Contains(TrailerType.LocalTrailer); } + } + /// <summary> /// Gets or sets the taglines. /// </summary> |
