18 lines
511 B
C#
18 lines
511 B
C#
using Portoa.Web.Models;
|
|
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;
|
|
CurrentUser = model.CurrentUser;
|
|
}
|
|
|
|
public PagedModel<Quote> PagedModel { get; set; }
|
|
}
|
|
} |