mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
committed by
GitHub
parent
d6d14b4170
commit
e0a0406825
@@ -1,12 +1,20 @@
|
||||
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 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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user