mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-14 02:44:52 +08:00

Work Item: 17236 --HG-- branch : dev extra : transplant_source : r%A8%1C%E2D%BF%8Fz%E4%9F%83%07%F5o%C5%8DR%21%96s
10 lines
300 B
C#
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; }
|
|
}
|
|
} |