mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
* BTCPay Server Extensions  * cleanup * fix * Polish UI a bit,detect when docker deployment
16 lines
347 B
C#
16 lines
347 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Contracts;
|
|
|
|
namespace BTCPayServer.Models.NotificationViewModels
|
|
{
|
|
public class IndexViewModel
|
|
{
|
|
public int Skip { get; set; }
|
|
public int Count { get; set; }
|
|
public int Total { get; set; }
|
|
public List<NotificationViewModel> Items { get; set; }
|
|
}
|
|
|
|
|
|
}
|