From 4064b8badad46ac30afd7009bdc793c1f49c9103 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 21 Sep 2013 17:00:04 -0400 Subject: added GameSystem entity --- MediaBrowser.Controller/Entities/GameSystem.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 MediaBrowser.Controller/Entities/GameSystem.cs (limited to 'MediaBrowser.Controller/Entities/GameSystem.cs') diff --git a/MediaBrowser.Controller/Entities/GameSystem.cs b/MediaBrowser.Controller/Entities/GameSystem.cs new file mode 100644 index 000000000..39e95b91d --- /dev/null +++ b/MediaBrowser.Controller/Entities/GameSystem.cs @@ -0,0 +1,23 @@ +using System; + +namespace MediaBrowser.Controller.Entities +{ + /// + /// Class GameSystem + /// + public class GameSystem : Folder + { + /// + /// Return the id that should be used to key display prefs for this item. + /// Default is based on the type for everything except actual generic folders. + /// + /// The display prefs id. + public override Guid DisplayPreferencesId + { + get + { + return Id; + } + } + } +} -- cgit v1.2.3