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/Game.cs | |
| parent | 8349b1f83ac77dc214085e4df70a1a5c5bef3909 (diff) | |
add soundtracks to theme media result
Diffstat (limited to 'MediaBrowser.Controller/Entities/Game.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Game.cs | 6 |
1 files changed, 5 insertions, 1 deletions
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<Guid> SoundtrackIds { get; set; } + public Game() { MultiPartGameFiles = new List<string>(); + SoundtrackIds = new List<Guid>(); } /// <summary> |
