payment methods
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// src/Webshop.Application/DTOs/Payments/BankTransferConfigurationDto.cs
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Webshop.Application.DTOs.Payments;
|
||||
|
||||
public class BankTransferConfigurationDto : IPaymentMethodConfiguration
|
||||
{
|
||||
[Required]
|
||||
public string IBAN { get; set; } = string.Empty;
|
||||
|
||||
[Required]
|
||||
public string BIC { get; set; } = string.Empty;
|
||||
|
||||
[Required]
|
||||
public string BankName { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user