mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
0652e30c30
* GreenField: Notifications API This refactors notifications so that we dont have a bunch of duplicated direct access to db contexts in controllers and then introduces new endpoints to fetch/toggle seen/remove notifications of the current user. * add tests + docs * fix test * pr changes * fix permission json
8 lines
129 B
C#
8 lines
129 B
C#
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class UpdateNotification
|
|
{
|
|
public bool? Seen { get; set; }
|
|
}
|
|
}
|