From 9f2cf613e165d5c7dd60bba3bfd3c0ee6e6ed2f6 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Fri, 3 May 2024 13:48:27 +0200 Subject: [PATCH] Add struct ATBMaxDateTime. --- library/include/mobilisis/payment_opt.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/library/include/mobilisis/payment_opt.h b/library/include/mobilisis/payment_opt.h index 4c698af..d5e8cd3 100644 --- a/library/include/mobilisis/payment_opt.h +++ b/library/include/mobilisis/payment_opt.h @@ -5,6 +5,8 @@ #include #include +#include + class ATBPaymentOption { public: @@ -47,6 +49,14 @@ public: int pop_daily_card_price; uint64_t pop_business_hours; int pop_time_step_config; + + struct ATBMaxDateTime { + int direction; + uint8_t week; + uint8_t day; + QTime time; + } pop_min_date_time, + pop_max_date_time; }; #endif // PAYMENT_OPT_H_INCLUDED