Files
BTCPayServerPlugins/Plugins/BTCPayServer.Plugins.TicketTailor/TicketTailorSettings.cs
2023-03-20 12:19:04 +01:00

17 lines
491 B
C#

using System.Collections.Generic;
namespace BTCPayServer.Plugins.TicketTailor
{
public class TicketTailorSettings
{
public string ApiKey { get; set; }
public string EventId { get; set; }
public bool ShowDescription { get; set; }
public string CustomCSS { get; set; }
public List<SpecificTicket> SpecificTickets { get; set; }
public bool BypassAvailabilityCheck { get; set; }
public bool RequireFullName { get; set; }
}
}