12 lines
208 B
C++
12 lines
208 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;
|
|
}; |