Adding ShapeMenuItem

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2013-02-10 15:32:38 -08:00
parent 9673ea7aea
commit 8651e33326
10 changed files with 149 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
using Orchard.ContentManagement;
namespace Orchard.Core.Navigation.Models {
public class ShapeMenuItemPart : ContentPart<ShapeMenuItemPartRecord> {
/// <summary>
/// Maximum number of items to retrieve from db
/// </summary>
public virtual string ShapeType {
get { return Record.ShapeType; }
set { Record.ShapeType = value; }
}
}
}