diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-21 17:00:04 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-21 17:00:04 -0400 |
| commit | 4064b8badad46ac30afd7009bdc793c1f49c9103 (patch) | |
| tree | 5993da64724b14b3fb0a0e725c7f36ced07db8d7 /MediaBrowser.Controller/Entities/GameSystem.cs | |
| parent | 0a7df60207334c6fccded9371b3ca0992ad1c43c (diff) | |
added GameSystem entity
Diffstat (limited to 'MediaBrowser.Controller/Entities/GameSystem.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/GameSystem.cs | 23 |
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; + } + } + } +} |
