Files
Orchard/src/Orchard.Web/Modules/Orchard.Blogs/ViewModels/RecentBlogPostsViewModel.cs
Sebastien Ros 82cf888a42 #17236 Changing recent blog post widget to handle homepage blogs like in the Archives widget
Work Item: 17236

--HG--
branch : dev
extra : transplant_source : r%A8%1C%E2D%BF%8Fz%E4%9F%83%07%F5o%C5%8DR%21%96s
2011-01-31 13:45:33 -08:00

10 lines
300 B
C#

using System.Collections.Generic;
using Orchard.Blogs.Models;
namespace Orchard.Blogs.ViewModels {
public class RecentBlogPostsViewModel {
public int Count { get; set; }
public string Path { get; set; }
public IEnumerable<BlogPart> Blogs { get; set; }
}
}