From ea2dfa144ffcdb50cf0a6b7365549556913aedf4 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Tue, 12 Dec 2023 17:56:26 +0100 Subject: [PATCH] Add new menber types: dailly ticket, timebase, time range and customer. --- library/include/mobilisis/member_type.h | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/library/include/mobilisis/member_type.h b/library/include/mobilisis/member_type.h index 6a66214..5d84452 100644 --- a/library/include/mobilisis/member_type.h +++ b/library/include/mobilisis/member_type.h @@ -1,4 +1,5 @@ -#pragma once +#ifndef MEMBER_TYPE_H_INCLUDED +#define MEMBER_TYPE_H_INCLUDED enum MemberType { @@ -12,5 +13,11 @@ enum MemberType WeekDaysWorkTimeType = 0x06, SpecialDaysWorktimeType = 0x07, SpecialDaysType = 0x08, - PeriodYearType = 0x09 -}; \ No newline at end of file + PeriodYearType = 0x09, + DailyTicketType = 0x0A, + CustomerType = 0x0B, + TimeBaseType = 0x0C, + TimeRangeType = 0x0D +}; + +#endif // MEMBER_TYPE_H_INCLUDED