Files
ShopSolution-backend/Webshop.Application/DTOs/Payments/PayPalConfigurationDto.cs
Tizian.Breuch 9eef4df3d0 payment methods
2025-07-31 14:01:39 +02:00

19 lines
460 B
C#

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 PayPalConfigurationDto : IPaymentMethodConfiguration
{
[Required]
public string ClientId { get; set; } = string.Empty;
[Required]
public string ClientSecret { get; set; } = string.Empty;
}
}