MOBILISIS-Calculator/library/include/mobilisis/tariff_customer.h

15 lines
253 B
C
Raw Normal View History

2023-12-12 11:59:35 +01:00
#ifndef TARIFF_CUSTOMER_H_INCLUDED
#define TARIFF_CUSTOMER_H_INCLUDED
#include <QString>
struct Customer {
Customer() = default;
int cust_id; // 1: Adult, 2: Child:
QString cust_label;
};
#endif // TARIFF_CUSTOMER_H_INCLUDED