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

14 lines
243 B
C
Raw Normal View History

2023-11-26 19:50:23 +01:00
#ifndef PAYMENT_METHOD_H_INCLUDED
#define PAYMENT_METHOD_H_INCLUDED
enum PaymentMethod {
Undefined = 0xFF,
Progressive = 0x01,
Degressive = 0x02,
Linear = 0x03,
Steps = 0x04,
Unified = 0x05
2023-11-26 19:50:23 +01:00
};
#endif // PAYMENT_METHOD_H_INCLUDED