Files
btcpayserver/BTCPayServer/Models/NoticeViewModels/IndexViewModel.cs
2020-06-14 23:49:08 -05:00

22 lines
513 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BTCPayServer.Models.NoticeViewModels
{
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; }
}
}
}