mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
21 lines
419 B
C#
21 lines
419 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
using BTCPayServer.Models;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace BTCPayServer.Components
|
||
|
{
|
||
|
public class Pager : ViewComponent
|
||
|
{
|
||
|
public Pager()
|
||
|
{
|
||
|
}
|
||
|
public IViewComponentResult Invoke(BasePagingViewModel viewModel)
|
||
|
{
|
||
|
return View(viewModel);
|
||
|
}
|
||
|
}
|
||
|
}
|