diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-02 11:46:25 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-02 11:46:25 -0500 |
| commit | cd279d98e0574c396c0a35984e46658151e54fc0 (patch) | |
| tree | 13f09923cd1c07ef22d959fe0a21842d0ef844eb /MediaBrowser.Controller/Entities/IHasTrailers.cs | |
| parent | 317f41107091a4334b9133a21e570d627a2d808a (diff) | |
added IHasTrailers
Diffstat (limited to 'MediaBrowser.Controller/Entities/IHasTrailers.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/IHasTrailers.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/IHasTrailers.cs b/MediaBrowser.Controller/Entities/IHasTrailers.cs new file mode 100644 index 000000000..47779064b --- /dev/null +++ b/MediaBrowser.Controller/Entities/IHasTrailers.cs @@ -0,0 +1,21 @@ +using MediaBrowser.Model.Entities; +using System; +using System.Collections.Generic; + +namespace MediaBrowser.Controller.Entities +{ + public interface IHasTrailers + { + /// <summary> + /// Gets or sets the remote trailers. + /// </summary> + /// <value>The remote trailers.</value> + List<MediaUrl> RemoteTrailers { get; set; } + + /// <summary> + /// Gets or sets the local trailer ids. + /// </summary> + /// <value>The local trailer ids.</value> + List<Guid> LocalTrailerIds { get; set; } + } +} |
