Skip to content

Commit

Permalink
changed int to object as fix for issue alexjamesbrown#22
Browse files Browse the repository at this point in the history
  • Loading branch information
punjabisoul committed Apr 15, 2013
1 parent fa557b3 commit 9eaad65
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions JoeBlogs/classes/CommentCount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@ public class CommentCount
/// <summary>
/// The number of comments marked as approved.
/// </summary>
public int Approved;
public object Approved;

/// <summary>
/// The number of comments awaiting moderation
/// </summary>
public int AwaitingModeration;
public object AwaitingModeration;

/// <summary>
/// The number of comments marked as spam
/// </summary>
public int Spam;
public object Spam;

/// <summary>
/// The total number of comments.
/// </summary>
public int TotalComments;
public object TotalComments;
}
}
}

0 comments on commit 9eaad65

Please sign in to comment.