mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
5c61de3ae9
* Different icons for notifications Closes #2510. * Fix version appendix for SVG use attributes * Fix SVGUse TagHelper * Update icons
19 lines
512 B
C#
19 lines
512 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class NotificationData
|
|
{
|
|
public string Id { get; set; }
|
|
public string Identifier { get; set; }
|
|
public string Type { get; set; }
|
|
public string Body { get; set; }
|
|
public bool Seen { get; set; }
|
|
public Uri Link { get; set; }
|
|
|
|
[JsonConverter(typeof(NBitcoin.JsonConverters.DateTimeToUnixTimeConverter))]
|
|
public DateTimeOffset CreatedTime { get; set; }
|
|
}
|
|
}
|