10 lines
323 B
C#
10 lines
323 B
C#
namespace NexusReader.Infrastructure.Configuration;
|
|
|
|
public record StripeSettings
|
|
{
|
|
public const string SectionName = "Stripe";
|
|
public string ProProductId { get; init; } = string.Empty;
|
|
public string BasicProductId { get; init; } = string.Empty;
|
|
public string FreeProductId { get; init; } = string.Empty;
|
|
}
|