// // YMSessionListHeadItem.h // YUMI // // Created by YUMI on 2022/11/17. // #import NS_ASSUME_NONNULL_BEGIN typedef NS_ENUM(NSUInteger, XPSessionListHeadItemType) { XPSessionListHeadItemType_Office,//官方公告 XPSessionListHeadItemType_Activity,//活动通知 XPSessionListHeadItemType_Subscribe,//订阅提醒 XPSessionListHeadItemType_MemgXin,//发现萌新 }; @interface XPSessionListHeadItem : PIBaseModel @property (nonatomic, copy) NSString *title; @property (nonatomic, copy) NSString *imageName; @property (nonatomic, assign) BOOL showRedDot; @property (nonatomic, assign) XPSessionListHeadItemType type; @end NS_ASSUME_NONNULL_END