mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
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; }
|
||
|
}
|