btcpayserver/BTCPayServer/Components/NotificationsDropdown/NotificationSummaryViewModel.cs
2020-08-12 16:48:14 +09:00

14 lines
374 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using BTCPayServer.Models.NotificationViewModels;
namespace BTCPayServer.Components.NotificationsDropdown
{
public class NotificationSummaryViewModel
{
public int UnseenCount { get; set; }
public List<NotificationViewModel> Last5 { get; set; }
}
}