2023-04-24 15:31:46 +02:00
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class ATBSpecialDays
|
|
|
|
{
|
|
|
|
public:
|
2024-04-19 13:17:00 +02:00
|
|
|
explicit ATBSpecialDays() = default;
|
2023-04-24 15:31:46 +02:00
|
|
|
int ped_id;
|
|
|
|
std::string ped_label;
|
|
|
|
std::string ped_date_start;
|
|
|
|
std::string ped_date_end;
|
2024-04-19 13:17:00 +02:00
|
|
|
int ped_period_special_day_id;
|
|
|
|
int ped_payment_option_id;
|
2023-04-24 15:31:46 +02:00
|
|
|
int ped_year;
|
2024-04-19 13:17:00 +02:00
|
|
|
};
|