mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
22 lines
519 B
C#
22 lines
519 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Models.NotificationViewModels
|
|
{
|
|
public class IndexViewModel
|
|
{
|
|
public List<NoticeDataHolder> Items { get; set; }
|
|
|
|
public class NoticeDataHolder
|
|
{
|
|
public int Id { get; set; }
|
|
public string Body { get; set; }
|
|
public string Level { get; set; }
|
|
public DateTime Created { get; set; }
|
|
}
|
|
}
|
|
}
|