mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
16 lines
355 B
C#
16 lines
355 B
C#
|
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; }
|
||
|
}
|