1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/Configuration/BillingConfig.cs

28 lines
725 B
C#
Raw Normal View History

2021-08-12 03:44:15 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Teknik.Configuration
{
public class BillingConfig
{
public BillingType Type { get; set; }
2021-08-12 03:44:15 +02:00
public string StripePublishApiKey { get; set; }
public string StripeSecretApiKey { get; set; }
2021-11-14 05:28:24 +01:00
public string StripeWebhookSecret { get; set; }
2021-08-12 03:44:15 +02:00
public string UploadProductId { get; set; }
public string EmailProductId { get; set; }
2021-08-12 03:44:15 +02:00
public BillingConfig()
{
Type = BillingType.Stripe;
2021-08-12 03:44:15 +02:00
StripePublishApiKey = null;
StripeSecretApiKey = null;
2021-11-14 05:28:24 +01:00
StripeWebhookSecret = null;
2021-08-12 03:44:15 +02:00
}
}
}