13 lines
336 B
C#
13 lines
336 B
C#
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;
|
|
}
|