Events-MVC (example with htmx)
This commit is contained in:
12
Events-MVC/Events.MVC/Models/People/PeoplePageViewModel.cs
Normal file
12
Events-MVC/Events.MVC/Models/People/PeoplePageViewModel.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
|
||||
namespace Events.MVC.Models.People;
|
||||
|
||||
public class PeoplePageViewModel
|
||||
{
|
||||
public PagedList<PersonViewModel> People { get; set; } = new([], new PagingInfo());
|
||||
|
||||
public List<SelectListItem> CountryOptions { get; set; } = [];
|
||||
|
||||
public string CountryFilter { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user