mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
Greenfield: Manage notifications (#6058)
Prerequisite for btcpayserver/app#12.
This commit is contained in:
15
BTCPayServer.Client/Models/NotificationSettingsData.cs
Normal file
15
BTCPayServer.Client/Models/NotificationSettingsData.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace BTCPayServer.Client.Models;
|
||||
|
||||
public class NotificationSettingsData
|
||||
{
|
||||
public List<NotificationSettingsItemData> Notifications { get; set; }
|
||||
}
|
||||
|
||||
public class NotificationSettingsItemData
|
||||
{
|
||||
public string Identifier { get; set; }
|
||||
public string Name { get; set; }
|
||||
public bool Enabled { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user