using MediaBrowser.Model.Updates;
namespace MediaBrowser.Model.Plugins
{
    /// 
    /// Class BasePluginConfiguration
    /// 
    public class BasePluginConfiguration
    {
        /// 
        /// Whether or not this plug-in should be automatically updated when a
        /// compatible new version is released
        /// 
        /// true if [enable auto update]; otherwise, false.
        public bool EnableAutoUpdate { get; set; }
        /// 
        /// The classification of updates to which to subscribe.
        /// Options are: Dev, Beta or Release
        /// 
        /// The update class.
        public PackageVersionClass UpdateClass { get; set; }
        /// 
        /// Initializes a new instance of the  class.
        /// 
        public BasePluginConfiguration()
        {
            EnableAutoUpdate = true;
        }
    }
}