/BlogEngine/DotNetSlave.BusinessLogic/DataStore/WidgetSettings.cs

# · C# · 25 lines · 14 code · 2 blank · 9 comment · 0 complexity · 131d0aeb9d07a8bc54b33781b9eee2d9 MD5 · raw file

  1. namespace BlogEngine.Core.DataStore
  2. {
  3. /// <summary>
  4. /// WidgetSettings implementation
  5. /// </summary>
  6. public class WidgetSettings : SettingsBase
  7. {
  8. #region Constructors and Destructors
  9. /// <summary>
  10. /// Initializes a new instance of the <see cref="WidgetSettings"/> class.
  11. /// </summary>
  12. /// <param name="setId">
  13. /// The set id.
  14. /// </param>
  15. public WidgetSettings(string setId)
  16. {
  17. this.SettingId = setId;
  18. this.ExType = ExtensionType.Widget;
  19. this.SettingsBehavior = new StringDictionaryBehavior();
  20. }
  21. #endregion
  22. }
  23. }