17 lines
470 B
C++
17 lines
470 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
class ATBSpecialDaysWorktime
|
|
{
|
|
public:
|
|
int pedwt_id;
|
|
int pedwt_period_exc_day_id;
|
|
std::string pedwt_time_from;
|
|
std::string pedwt_time_to;
|
|
double pedwt_price;
|
|
int pedwt_paid; // 00: not paid (i.e. free)
|
|
// 01: not paid in winter term, piad in summer term
|
|
// 10: paid in winter term, not paid in summer term
|
|
// 11: paid in winter and in summer term
|
|
};
|