15 lines
410 B
C#
15 lines
410 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Hutopy.Infrastructure.Payments.Stripe.Configuration;
|
|
|
|
public class StripeOptions
|
|
{
|
|
public const string ConfigurationSection = "Stripe";
|
|
|
|
[Required] public required string SecretKey { get; init; }
|
|
|
|
[Required] public required string WebhookSecret { get; init; }
|
|
|
|
[Required] [Range(0, 1)] public required decimal HutopyRate { get; init; }
|
|
}
|