18 lines
331 B
C
18 lines
331 B
C
// #pragma once
|
|
#ifndef TARIFF_PAYMENT_RATE_H_INCLUDED
|
|
#define TARIFF_PAYMENT_RATE_H_INCLUDED
|
|
|
|
/// <summary>
|
|
/// Payment option data
|
|
/// </summary>
|
|
// class TariffPaymentRate
|
|
struct TariffPaymentRate
|
|
{
|
|
// public:
|
|
int pra_payment_option_id;
|
|
int pra_payment_unit_id;
|
|
double pra_price;
|
|
};
|
|
|
|
#endif // TARIFF_PAYMENT_RATE_H_INCLUDED
|