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; } }