2009-11-20 23:31:49 +00:00
|
|
|
using Orchard.Models;
|
|
|
|
|
|
|
|
namespace Orchard.Blogs.Models {
|
2009-11-21 09:47:18 +00:00
|
|
|
public class BlogPost : ContentPart<BlogPostRecord> {
|
2009-11-24 02:03:13 +00:00
|
|
|
public Blog Blog { get; set; }
|
2009-11-20 23:31:49 +00:00
|
|
|
}
|
|
|
|
}
|