btcpayserver/BTCPayServer.Client/Models/UpdateNotificationSettingsRequest.cs

9 lines
172 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace BTCPayServer.Client.Models;
public class UpdateNotificationSettingsRequest
{
public List<string> Disabled { get; set; }
}