mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
Renaming Notice to Notification
Longer, but what can we do...
This commit is contained in:
21
BTCPayServer/Models/NotificationViewModels/IndexViewModel.cs
Normal file
21
BTCPayServer/Models/NotificationViewModels/IndexViewModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user