btcpayserver/BTCPayServer/Models/NotificationViewModels/IndexViewModel.cs
2024-07-02 17:55:54 +09:00

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; }
}
}