10 lines
297 B
C#
10 lines
297 B
C#
namespace ZelWiki.Models.ViewModels.Page
|
|
{
|
|
public class PageSearchViewModel : ViewModelBase
|
|
{
|
|
public List<DataModels.Page> Pages { get; set; } = new();
|
|
public string SearchString { get; set; } = string.Empty;
|
|
public int PaginationPageCount { get; set; }
|
|
}
|
|
}
|