mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-18 21:32:27 +01:00
feffbbd980
Prerequisite for btcpayserver/app#12.
9 lines
172 B
C#
9 lines
172 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BTCPayServer.Client.Models;
|
|
|
|
public class UpdateNotificationSettingsRequest
|
|
{
|
|
public List<string> Disabled { get; set; }
|
|
}
|