Renaming Notice to Notification

Longer, but what can we do...
This commit is contained in:
rockstardev
2020-05-27 18:35:25 -05:00
parent 1ab016d21e
commit 0cacfa140b
6 changed files with 22 additions and 8 deletions

View File

@@ -0,0 +1,21 @@
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; }
}
}
}