mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
ed497cab99
* UI: Hide pagination and page size when not necessary * UI: Use pager component for notifications list * UI: Use pager component for wallet transactions list * UI: Improve pager component * Fix from code review
11 lines
264 B
C#
11 lines
264 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Abstractions.Contracts;
|
|
|
|
namespace BTCPayServer.Models.NotificationViewModels
|
|
{
|
|
public class IndexViewModel : BasePagingViewModel
|
|
{
|
|
public List<NotificationViewModel> Items { get; set; }
|
|
}
|
|
}
|