aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasSoundtracks.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Entities/IHasSoundtracks.cs')
-rw-r--r--MediaBrowser.Controller/Entities/IHasSoundtracks.cs17
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; }
+ }
+}