mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
17 lines
322 B
C#
17 lines
322 B
C#
|
using BTCPayServer.Models;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace BTCPayServer.Components
|
||
|
{
|
||
|
public class Pager : ViewComponent
|
||
|
{
|
||
|
public Pager()
|
||
|
{
|
||
|
}
|
||
|
public IViewComponentResult Invoke(BasePagingViewModel viewModel)
|
||
|
{
|
||
|
return View(viewModel);
|
||
|
}
|
||
|
}
|
||
|
}
|