Files
btcpayserver/BTCPayServer/Models/NotificationViewModels/IndexViewModel.cs
rockstardev 0cacfa140b Renaming Notice to Notification
Longer, but what can we do...
2020-06-14 23:49:08 -05:00

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