9 lines
250 B
C#
9 lines
250 B
C#
namespace PlotLine.Models;
|
|
|
|
public sealed class StripeSettings
|
|
{
|
|
public string PublishableKey { get; set; } = string.Empty;
|
|
public string SecretKey { get; set; } = string.Empty;
|
|
public string WebhookSecret { get; set; } = string.Empty;
|
|
}
|