using Microsoft.AspNetCore.Mvc.Rendering; namespace Events.MVC.Models.People; public class PeoplePageViewModel { public PagedList People { get; set; } = new([], new PagingInfo()); public List CountryOptions { get; set; } = []; public string CountryFilter { get; set; } = string.Empty; }