mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
8 lines
172 B
C#
8 lines
172 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BTCPayServer.Client.Models;
|
|
|
|
public class UpdateNotificationSettingsRequest
|
|
{
|
|
public List<string> Disabled { get; set; }
|
|
}
|