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

16 lines
282 B
C
Raw Normal View History

2023-12-12 12:14:14 +01:00
#ifndef TARIFF_CUSTOMER_H_INCLUDED
#define TARIFF_CUSTOMER_H_INCLUDED
2023-12-12 11:59:35 +01:00
#include <QString>
2023-12-12 12:14:14 +01:00
struct Customer {
enum class CustomerType {ADULT=0, CHILD, TEEN};
2023-12-12 11:59:35 +01:00
2023-12-12 12:14:14 +01:00
Customer() = default;
2023-12-12 11:59:35 +01:00
2023-12-12 12:14:14 +01:00
CustomerType cust_type;
2023-12-12 12:10:55 +01:00
QString cust_label;
2023-12-12 11:59:35 +01:00
};
#endif // TARIFF_CUSTOMER_H_INCLUDED