Greenfield: Manage notifications (#6058)

Prerequisite for btcpayserver/app#12.
This commit is contained in:
d11n
2024-06-25 20:01:11 +02:00
committed by GitHub
parent e0c5ac5271
commit feffbbd980
7 changed files with 306 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
using System.Collections.Generic;
namespace BTCPayServer.Client.Models;
public class UpdateNotificationSettingsRequest
{
public List<string> Disabled { get; set; }
}