Files
BTCPayServerPlugins/Plugins/BTCPayServer.Plugins.TicketTailor/TicketTailorSettings.cs
2023-04-24 16:14:25 +02:00

18 lines
544 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; }
public bool AllowDiscountCodes { get; set; }
}
}