
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
29 lines
697 B
Objective-C
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
|