16 lines
263 B
C++
16 lines
263 B
C++
// #pragma once
|
|
#ifndef TARIFF_PAYMENT_MTH_H_INCLUDED
|
|
#define TARIFF_PAYMENT_MTH_H_INCLUDED
|
|
|
|
/// <summary>
|
|
/// Payment method data
|
|
/// </summary>
|
|
class TariffPaymentMethod
|
|
{
|
|
public:
|
|
int pme_id;
|
|
std::string pme_label;
|
|
};
|
|
|
|
#endif // TARIFF_PAYMENT_MTH_H_INCLUDED
|