mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-20 19:03:25 +08:00
13 lines
419 B
C#
13 lines
419 B
C#
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; }
|
|
}
|
|
}
|
|
} |