mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
18 lines
544 B
C#
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; }
|
|
}
|
|
}
|