payment methods

This commit is contained in:
Tizian.Breuch
2025-07-31 14:01:39 +02:00
parent b89f0d0dd0
commit 9eef4df3d0
7 changed files with 260 additions and 12 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Webshop.Application.DTOs.Payments
{
public class StripeConfigurationDto : IPaymentMethodConfiguration
{
[Required]
public string PublicKey { get; set; } = string.Empty;
[Required]
public string SecretKey { get; set; } = string.Empty;
}
}