29 lines
694 B
C
29 lines
694 B
C
![]() |
//
|
||
|
// 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,//发现萌新
|
||
|
};
|
||
|
|
||
|
@interface XPSessionListHeadItem : NSObject
|
||
|
|
||
|
@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
|