13 lines
193 B
C++
13 lines
193 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
class ATBPeriodYear
|
|
{
|
|
public:
|
|
int pye_id;
|
|
std::string pye_label;
|
|
int pye_start_month;
|
|
int pye_start_day;
|
|
int pye_end_month;
|
|
int pye_end_day;
|
|
}; |