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