Foundation for events to propagate notifications

This commit is contained in:
rockstardev
2020-05-27 18:41:00 -05:00
parent 0cacfa140b
commit 6ddb20d022
6 changed files with 121 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BTCPayServer.Data.Data
{
public class NotificationData
{
public string Id { get; set; }
public DateTimeOffset Created { get; set; }
public string ApplicationUserId { get; set; }
public string NotificationType { get; set; }
public bool Seen { get; set; }
public byte[] Blob { get; set; }
}
}