16 lines
291 B
C
16 lines
291 B
C
#ifndef TARIFF_CUSTOMER_H_INCLUDED
|
|
#define TARIFF_CUSTOMER_H_INCLUDED
|
|
|
|
#include <QString>
|
|
|
|
struct ATBCustomer {
|
|
enum class CustomerType {ADULT=1000, CHILD, TEEN};
|
|
|
|
ATBCustomer() = default;
|
|
|
|
CustomerType cust_type;
|
|
QString cust_label;
|
|
};
|
|
|
|
#endif // TARIFF_CUSTOMER_H_INCLUDED
|