17 lines
629 B
C#
17 lines
629 B
C#
// src/Webshop.Application/DTOs/Payments/AdminPaymentMethodDto.cs
|
|
using System;
|
|
using Webshop.Domain.Enums;
|
|
|
|
namespace Webshop.Application.DTOs.Payments
|
|
{
|
|
public class AdminPaymentMethodDto
|
|
{
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
public string Name { get; set; } = string.Empty;
|
|
public string? Description { get; set; }
|
|
public bool IsActive { get; set; }
|
|
public PaymentGatewayType PaymentGatewayType { get; set; }
|
|
public string? Configuration { get; set; } // Als JSON-String, den der Admin bearbeitet
|
|
public decimal? ProcessingFee { get; set; }
|
|
}
|
|
} |