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.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/IHasSoundtracks.cs b/MediaBrowser.Controller/Entities/IHasSoundtracks.cs
index 31defc9f4..3ac2491fb 100644
--- a/MediaBrowser.Controller/Entities/IHasSoundtracks.cs
+++ b/MediaBrowser.Controller/Entities/IHasSoundtracks.cs
@@ -13,5 +13,17 @@ namespace MediaBrowser.Controller.Entities
/// </summary>
/// <value>The soundtrack ids.</value>
List<Guid> SoundtrackIds { get; set; }
+
+ /// <summary>
+ /// Gets the name.
+ /// </summary>
+ /// <value>The name.</value>
+ string Name { get; }
+
+ /// <summary>
+ /// Gets the identifier.
+ /// </summary>
+ /// <value>The identifier.</value>
+ Guid Id { get; }
}
}