aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/BaseGame.cs
blob: 5df1bfaf4a1a780689ee018db5b800edbff6f12c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
namespace MediaBrowser.Controller.Entities
{
    /// <summary>
    /// Class BaseGame
    /// </summary>
    public class BaseGame : BaseItem
    {
        /// <summary>
        /// Gets the type of the media.
        /// </summary>
        /// <value>The type of the media.</value>
        public override string MediaType
        {
            get { return Model.Entities.MediaType.Game; }
        }

        /// <summary>
        /// Gets or sets the players supported.
        /// </summary>
        /// <value>The players supported.</value>
        public int? PlayersSupported { get; set; }

        /// <summary>
        /// Gets or sets the game system.
        /// </summary>
        /// <value>The game system.</value>
        public string GameSystem { get; set; }
    }
}