Files
BTCPayServerPlugins/Plugins/BTCPayServer.Plugins.TicketTailor/TicketTailorSettings.cs
2023-12-08 11:09:23 +01:00

19 lines
596 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; }
public bool SendEmail { get; set; } = true;
}
}