Files
peko-ios/YuMi/Modules/YMMessage/View/SessionListHeadView/XPSessionListHeadItem.h
2023-11-15 17:25:09 +08:00

29 lines
697 B
Objective-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 : 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