diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-12 10:36:08 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-12 10:36:08 -0500 |
| commit | 9758adb8a57e3b43013d9feabdf413af6c964a0f (patch) | |
| tree | 0d067e5c8b5b15a1f0de3c03e147ea4a627a1968 /MediaBrowser.Controller/Entities/IHasSoundtracks.cs | |
| parent | 8349b1f83ac77dc214085e4df70a1a5c5bef3909 (diff) | |
add soundtracks to theme media result
Diffstat (limited to 'MediaBrowser.Controller/Entities/IHasSoundtracks.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/IHasSoundtracks.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/IHasSoundtracks.cs b/MediaBrowser.Controller/Entities/IHasSoundtracks.cs new file mode 100644 index 000000000..31defc9f4 --- /dev/null +++ b/MediaBrowser.Controller/Entities/IHasSoundtracks.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; + +namespace MediaBrowser.Controller.Entities +{ + /// <summary> + /// Interface IHasSoundtracks + /// </summary> + public interface IHasSoundtracks + { + /// <summary> + /// Gets or sets the soundtrack ids. + /// </summary> + /// <value>The soundtrack ids.</value> + List<Guid> SoundtrackIds { get; set; } + } +} |
