vgquotes/Src/VideoGameQuotes.Web/Models/DefaultBrowseModel.cs
tmont a41335c5ba * improved default browse page
* fixed bug where you couldn't add more categories if none already existed
* added ability to delete quotes
* added call handler to delete the search index when a quote is deleted
2011-03-04 08:20:20 +00:00

9 lines
332 B
C#

namespace VideoGameQuotes.Web.Models {
public class DefaultBrowseModel {
public int TotalNumberOfQuotes { get; set; }
public int TotalNumberOfGames { get; set; }
public int TotalNumberOfSystems { get; set; }
public int TotalNumberOfPublishers { get; set; }
public int TotalNumberOfCategories { get; set; }
}
}