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
404 B
C#
16 lines
404 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Contracts;
|
|
using BTCPayServer.Models.NotificationViewModels;
|
|
|
|
namespace BTCPayServer.Components.NotificationsDropdown
|
|
{
|
|
public class NotificationSummaryViewModel
|
|
{
|
|
public int UnseenCount { get; set; }
|
|
public List<NotificationViewModel> Last5 { get; set; }
|
|
}
|
|
}
|