payment methods
This commit is contained in:
18
Webshop.Application/DTOs/Payments/PayPalConfigurationDto.cs
Normal file
18
Webshop.Application/DTOs/Payments/PayPalConfigurationDto.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user