19 lines
605 B
C#
19 lines
605 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using VideoGameQuotes.Api;
|
|||
|
|
|||
|
namespace VideoGameQuotes.Web.Models {
|
|||
|
public class BrowseViewModel {
|
|||
|
public BrowseViewModel() {
|
|||
|
Games = Enumerable.Empty<Game>();
|
|||
|
Systems = Enumerable.Empty<GamingSystem>();
|
|||
|
Categories = Enumerable.Empty<Category>();
|
|||
|
Publishers = Enumerable.Empty<Publisher>();
|
|||
|
}
|
|||
|
|
|||
|
public IEnumerable<Game> Games { get; set; }
|
|||
|
public IEnumerable<GamingSystem> Systems { get; set; }
|
|||
|
public IEnumerable<Category> Categories { get; set; }
|
|||
|
public IEnumerable<Publisher> Publishers { get; set; }
|
|||
|
}
|
|||
|
}
|