forked from BlogEngine/BlogEngine.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStats.cs
More file actions
27 lines (17 loc) · 647 Bytes
/
Stats.cs
File metadata and controls
27 lines (17 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
namespace BlogEngine.Core.Data.Models
{
public class Stats
{
public int PublishedPostsCount { get; set; }
public int DraftPostsCount { get; set; }
public int PublishedPagesCount { get; set; }
public int DraftPagesCount { get; set; }
public int PublishedCommentsCount { get; set; }
public int UnapprovedCommentsCount { get; set; }
public int SpamCommentsCount { get; set; }
public int CategoriesCount { get; set; }
public int TagsCount { get; set; }
public int UsersCount { get; set; }
public string SubscribersCount { get; set; }
}
}