using System.Collections.Generic;
namespace MediaBrowser.Model.Dto
{
    /// 
    /// Class GameSystemSummary
    /// 
    public class GameSystemSummary
    {
        /// 
        /// Gets or sets the name.
        /// 
        /// The name.
        public string Name { get; set; }
        /// 
        /// Gets or sets the name.
        /// 
        /// The name.
        public string DisplayName { get; set; }
        
        /// 
        /// Gets or sets the game count.
        /// 
        /// The game count.
        public int GameCount { get; set; }
        /// 
        /// Gets or sets the game extensions.
        /// 
        /// The game extensions.
        public string[] GameFileExtensions { get; set; }
        /// 
        /// Gets or sets the client installed game count.
        /// 
        /// The client installed game count.
        public int ClientInstalledGameCount { get; set; }
        /// 
        /// Initializes a new instance of the  class.
        /// 
        public GameSystemSummary()
        {
            GameFileExtensions = new string[] { };
        }
    }
}