mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
12 lines
326 B
C#
12 lines
326 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Abstractions.Contracts;
|
|
|
|
namespace BTCPayServer.Models.NotificationViewModels
|
|
{
|
|
public class IndexViewModel : BasePagingViewModel
|
|
{
|
|
public List<NotificationViewModel> Items { get; set; }
|
|
|
|
public override int CurrentPageCount => Items.Count;
|
|
}
|
|
}
|