mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
17 lines
424 B
C#
17 lines
424 B
C#
|
using System;
|
||
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace BTCPayServer.Client.Models
|
||
|
{
|
||
|
public class NotificationData
|
||
|
{
|
||
|
public string Id { 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; }
|
||
|
}
|
||
|
}
|