2024-02-15 16:07:04 +01:00
|
|
|
#ifndef PAYMENT_RATE_INCLUDED_H
|
|
|
|
#define PAYMENT_RATE_INCLUDED_H
|
2023-04-24 15:31:46 +02:00
|
|
|
|
|
|
|
class ATBPaymentRate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int pra_payment_option_id;
|
|
|
|
int pra_payment_unit_id;
|
|
|
|
double pra_price;
|
2024-02-15 16:07:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PAYMENT_RATE_INCLUDED_H
|