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