2020-12-11 15:11:08 +01:00
|
|
|
using System;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Client.Models
|
|
|
|
{
|
|
|
|
public class NotificationData
|
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
2023-02-21 03:06:27 +01:00
|
|
|
public string Identifier { get; set; }
|
|
|
|
public string Type { get; set; }
|
2020-12-11 15:11:08 +01:00
|
|
|
public string Body { get; set; }
|
2024-07-10 17:12:22 +02:00
|
|
|
public string StoreId { get; set; }
|
2020-12-11 15:11:08 +01:00
|
|
|
public bool Seen { get; set; }
|
|
|
|
public Uri Link { get; set; }
|
|
|
|
|
|
|
|
[JsonConverter(typeof(NBitcoin.JsonConverters.DateTimeToUnixTimeConverter))]
|
|
|
|
public DateTimeOffset CreatedTime { get; set; }
|
|
|
|
}
|
|
|
|
}
|