mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
7 lines
186 B
C#
7 lines
186 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Orchard.Widgets.Models {
|
|
public class LayerZone {
|
|
public IList<WidgetPart> WidgetParts = new List<WidgetPart>();
|
|
}
|
|
} |