Files
Orchard/src/Orchard.Web/Modules/Orchard.Blogs/Models/BlogArchivesPart.cs
Sebastien Ros ce60c6d3a0 Adding BlogArchives widget
--HG--
branch : dev
2010-10-12 17:33:08 -07:00

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; }
}
}
}