PageRenderTime 60ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
C# | 25 lines | 14 code | 2 blank | 9 comment | 0 complexity | 131d0aeb9d07a8bc54b33781b9eee2d9 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  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. }