mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 14:04:26 +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; }
|
|
}
|