aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/GameSystem.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Entities/GameSystem.cs')
-rw-r--r--MediaBrowser.Controller/Entities/GameSystem.cs23
1 files changed, 23 insertions, 0 deletions
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
+{
+ /// <summary>
+ /// Class GameSystem
+ /// </summary>
+ public class GameSystem : Folder
+ {
+ /// <summary>
+ /// 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.
+ /// </summary>
+ /// <value>The display prefs id.</value>
+ public override Guid DisplayPreferencesId
+ {
+ get
+ {
+ return Id;
+ }
+ }
+ }
+}