/* * $Id: ConfigSection.cs 439 2007-11-26 13:26:10Z spocke $ * * @author Moxiecode * @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved. */ using System; using System.Collections.Specialized; namespace umbraco.editorControls.tinyMCE3.webcontrol.plugin { /// /// Description of ConfigSection. /// public class ConfigSection { #region private private NameValueCollection globalSettings; private bool gzipEnabled, gzipDiskCache, gzipNoCompression; private string installPath, mode, gzipCachePath; private long gzipExpiresOffset; #endregion /// /// /// public ConfigSection() { this.globalSettings = new NameValueCollection(); } /// /// /// public string InstallPath { get { return installPath; } set { installPath = value; } } /// /// /// public string Mode { get { return mode; } set { mode = value; } } /// /// /// public NameValueCollection GlobalSettings { get { return globalSettings; } set { globalSettings = value; } } /// /// /// public bool GzipEnabled { get { return gzipEnabled; } set { gzipEnabled = value; } } /// /// /// public long GzipExpiresOffset { get { return gzipExpiresOffset; } set { gzipExpiresOffset = value; } } /// /// /// public bool GzipDiskCache { get { return gzipDiskCache; } set { gzipDiskCache = value; } } /// /// /// public string GzipCachePath { get { return gzipCachePath; } set { gzipCachePath = value; } } /// /// /// public bool GzipNoCompression { get { return gzipNoCompression; } set { gzipNoCompression = value; } } } }