mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 03:25:23 +08:00
14 lines
390 B
C#
14 lines
390 B
C#
using Orchard.ContentManagement;
|
|
|
|
namespace Orchard.Blogs.Models {
|
|
/// <summary>
|
|
/// The content part used by the BlogArchives widget
|
|
/// </summary>
|
|
public class BlogArchivesPart : ContentPart<BlogArchivesPartRecord> {
|
|
public string ForBlog {
|
|
get { return Record.BlogSlug; }
|
|
set { Record.BlogSlug = value; }
|
|
}
|
|
}
|
|
}
|