- Updating ExtensionManager and ThemeService to read zones from the manifest.

- Adding a few essential parts for layers, widgets.

--HG--
branch : dev
This commit is contained in:
Suha Can
2010-09-29 14:29:43 -07:00
parent 19313b887f
commit e9208542ed
15 changed files with 60 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
using System.Collections.Generic;
namespace Orchard.Widgets.Models {
public class LayerZone {
public IList<WidgetPart> WidgetParts = new List<WidgetPart>();
}
}