mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
20 lines
621 B
C#
20 lines
621 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Abstractions.Contracts;
|
|
using BTCPayServer.Data;
|
|
|
|
namespace BTCPayServer.Models.NotificationViewModels
|
|
{
|
|
public class IndexViewModel : BasePagingViewModel
|
|
{
|
|
public List<NotificationViewModel> Items { get; set; } = [];
|
|
public string SearchText { get; set; }
|
|
public string Status { get; set; }
|
|
public SearchString Search { get; set; }
|
|
public override int CurrentPageCount => Items.Count;
|
|
}
|
|
|
|
public class NotificationIndexViewModel : IndexViewModel
|
|
{
|
|
public List<StoreData> Stores { get; set; }
|
|
}
|
|
}
|