/BlogEngine/DotNetSlave.BusinessLogic/DataStore/WidgetSettings.cs
# · C# · 25 lines · 14 code · 2 blank · 9 comment · 0 complexity · 131d0aeb9d07a8bc54b33781b9eee2d9 MD5 · raw file
- namespace BlogEngine.Core.DataStore
- {
- /// <summary>
- /// WidgetSettings implementation
- /// </summary>
- public class WidgetSettings : SettingsBase
- {
- #region Constructors and Destructors
-
- /// <summary>
- /// Initializes a new instance of the <see cref="WidgetSettings"/> class.
- /// </summary>
- /// <param name="setId">
- /// The set id.
- /// </param>
- public WidgetSettings(string setId)
- {
- this.SettingId = setId;
- this.ExType = ExtensionType.Widget;
- this.SettingsBehavior = new StringDictionaryBehavior();
- }
-
- #endregion
- }
- }