2021-08-05 06:22:19 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Castle.Core.Internal;
|
|
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2021-08-17 07:59:01 +00:00
|
|
|
using Microsoft.AspNetCore.Mvc.ModelBinding;
|
2021-07-21 00:08:57 +00:00
|
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
2021-08-05 06:22:19 +00:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
using Props.Data;
|
|
|
|
using Props.Extensions;
|
|
|
|
using Props.Models.Search;
|
|
|
|
using Props.Models.User;
|
|
|
|
using Props.Services.Modules;
|
|
|
|
using Props.Shop.Framework;
|
2021-07-21 00:08:57 +00:00
|
|
|
|
|
|
|
namespace Props.Pages
|
|
|
|
{
|
2021-07-21 06:58:49 +00:00
|
|
|
public class SearchModel : PageModel
|
2021-07-21 00:08:57 +00:00
|
|
|
{
|
2021-08-05 06:22:19 +00:00
|
|
|
[BindProperty(Name = "q", SupportsGet = true)]
|
|
|
|
public string SearchQuery { get; set; }
|
2021-07-21 00:08:57 +00:00
|
|
|
}
|
|
|
|
}
|