From 9758adb8a57e3b43013d9feabdf413af6c964a0f Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 12 Nov 2013 10:36:08 -0500 Subject: add soundtracks to theme media result --- MediaBrowser.Controller/Entities/Game.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.Controller/Entities/Game.cs') diff --git a/MediaBrowser.Controller/Entities/Game.cs b/MediaBrowser.Controller/Entities/Game.cs index 8a33eeb86..e8374c274 100644 --- a/MediaBrowser.Controller/Entities/Game.cs +++ b/MediaBrowser.Controller/Entities/Game.cs @@ -1,13 +1,17 @@ using MediaBrowser.Model.Entities; +using System; using System.Collections.Generic; namespace MediaBrowser.Controller.Entities { - public class Game : BaseItem + public class Game : BaseItem, IHasSoundtracks { + public List SoundtrackIds { get; set; } + public Game() { MultiPartGameFiles = new List(); + SoundtrackIds = new List(); } /// -- cgit v1.2.3