mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-07-16 21:45:47 +08:00
16 lines
462 B
C#
16 lines
462 B
C#
![]() |
using Orchard.ContentManagement;
|
|||
|
using Orchard.ContentManagement.Aspects;
|
|||
|
|
|||
|
namespace Orchard.Core.Routable.Models {
|
|||
|
public class IsRoutable : ContentPart<RoutableRecord>, IRoutableAspect {
|
|||
|
public string Title {
|
|||
|
get { return Record.Title; }
|
|||
|
set { Record.Title = value; }
|
|||
|
}
|
|||
|
|
|||
|
public string Slug {
|
|||
|
get { return Record.Slug; }
|
|||
|
set { Record.Slug = value; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|