16 lines
452 B
C#
16 lines
452 B
C#
// 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;
|
|
} |