2023-07-14 18:50:55 +08:00
|
|
|
//
|
|
|
|
// YMSessionListHeadItem.h
|
|
|
|
// YUMI
|
|
|
|
//
|
|
|
|
// Created by YUMI on 2022/11/17.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
typedef NS_ENUM(NSUInteger, XPSessionListHeadItemType) {
|
|
|
|
XPSessionListHeadItemType_Office,//官方公告
|
|
|
|
XPSessionListHeadItemType_Activity,//活动通知
|
|
|
|
XPSessionListHeadItemType_Subscribe,//订阅提醒
|
|
|
|
XPSessionListHeadItemType_MemgXin,//发现萌新
|
|
|
|
};
|
|
|
|
|
2023-11-15 17:25:09 +08:00
|
|
|
@interface XPSessionListHeadItem : PIBaseModel
|
2023-07-14 18:50:55 +08:00
|
|
|
|
|
|
|
@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
|