using gehGassi.Dto.Common; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace gehGassi.Dto.Payment { /// /// DTO für Transaktionsgebühren /// public class TransactionFeeDto : SyncEntityDto { /// /// Zahlungsmethode /// [Required] public PayInTypeDto PayInType { get; set; } /// /// Prozent /// [Required] [Range(0.0, 100.0)] public decimal Percent { get; set; } /// /// Fixer Betrag /// [Required] [Range(0.0, 100000.0)] public decimal Fixed { get; set; } } }