mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-20 10:45:29 +08:00
13 lines
412 B
C#
13 lines
412 B
C#
using Orchard.ContentManagement;
|
|
|
|
namespace Orchard.Core.Navigation.Models {
|
|
public class ShapeMenuItemPart : ContentPart {
|
|
/// <summary>
|
|
/// Maximum number of items to retrieve from db
|
|
/// </summary>
|
|
public string ShapeType {
|
|
get { return this.Retrieve(x => x.ShapeType); }
|
|
set { this.Store(x => x.ShapeType, value); }
|
|
}
|
|
}
|
|
} |