tmont
a41335c5ba
* 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
9 lines
332 B
C#
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; }
|
|
}
|
|
} |