19 lines
308 B
C
19 lines
308 B
C
|
// #pragma once
|
||
|
#ifndef TARIFF_CURRENCY_H_INCLUDED
|
||
|
#define TARIFF_CURRENCY_H_INCLUDED
|
||
|
|
||
|
/// <summary>
|
||
|
/// Currency data
|
||
|
/// </summary>
|
||
|
class TariffCurrency
|
||
|
{
|
||
|
public:
|
||
|
int pcu_id;
|
||
|
std::string pcu_sign;
|
||
|
std::string pcu_major;
|
||
|
std::string pcu_minor;
|
||
|
bool pcu_active;
|
||
|
};
|
||
|
|
||
|
#endif // TARIFF_CURRENCY_H_INCLUDED
|