mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
21 lines
621 B
C#
21 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; }
|
|
}
|
|
}
|