16 lines
226 B
C++
16 lines
226 B
C++
// #pragma once
|
|
|
|
/// <summary>
|
|
/// Year period definition
|
|
/// </summary>
|
|
class TariffPeriodYear
|
|
{
|
|
public:
|
|
int pye_id;
|
|
std::string pye_label;
|
|
int pye_start_month;
|
|
int pye_start_day;
|
|
int pye_end_month;
|
|
int pye_end_day;
|
|
};
|