Minor: rename to ATBCustomer.

This commit is contained in:
Gerhard Hoffmann 2023-12-12 17:55:44 +01:00
parent cc07b8f20e
commit f56979a61a

View File

@ -3,10 +3,10 @@
#include <QString>
struct Customer {
enum class CustomerType {ADULT=0, CHILD, TEEN};
struct ATBCustomer {
enum class CustomerType {ADULT=1000, CHILD, TEEN};
Customer() = default;
ATBCustomer() = default;
CustomerType cust_type;
QString cust_label;