13 lines
		
	
	
		
			219 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			219 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef PAYMENT_RATE_INCLUDED_H
 | |
| #define PAYMENT_RATE_INCLUDED_H
 | |
| 
 | |
| class ATBPaymentRate
 | |
| {
 | |
| public:
 | |
| 	int pra_payment_option_id;
 | |
| 	int pra_payment_unit_id;
 | |
| 	double pra_price;
 | |
| };
 | |
| 
 | |
| #endif // PAYMENT_RATE_INCLUDED_H
 |