mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +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);
|
|
}
|
|
}
|
|
}
|