mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
10 lines
306 B
C#
10 lines
306 B
C#
using Orchard.ContentManagement;
|
|
|
|
namespace Orchard.Blogs.Models {
|
|
public class BlogPagerPart : ContentPart {
|
|
public int Page { get; set; }
|
|
public int PageSize { get; set; }
|
|
public string BlogSlug { get; set; }
|
|
public bool ThereIsANextPage { get; set; }
|
|
}
|
|
} |