2011-02-27 01:14:56 +00:00
|
|
|
|
using Portoa.Web.Models;
|
2011-02-16 10:11:55 +00:00
|
|
|
|
using VideoGameQuotes.Api;
|
|
|
|
|
|
|
|
|
|
namespace VideoGameQuotes.Web.Models {
|
|
|
|
|
public class QualifiedBrowseModel : BrowseModel {
|
|
|
|
|
public QualifiedBrowseModel(BrowseModel model) {
|
|
|
|
|
CategoryIds = model.CategoryIds;
|
|
|
|
|
GameIds = model.GameIds;
|
|
|
|
|
PublisherIds = model.PublisherIds;
|
|
|
|
|
SortMethod = model.SortMethod;
|
|
|
|
|
SystemIds = model.SystemIds;
|
|
|
|
|
SortOrder = model.SortOrder;
|
2011-02-27 01:14:56 +00:00
|
|
|
|
CurrentUser = model.CurrentUser;
|
2011-02-16 10:11:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-02-27 01:14:56 +00:00
|
|
|
|
public PagedModel<Quote> PagedModel { get; set; }
|
2011-02-16 10:11:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|