
- 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
22 lines
435 B
Objective-C
22 lines
435 B
Objective-C
//
|
|
// YMMonentsTopicListProtocol.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/8/18.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol XPMomentsTopicListProtocol <NSObject>
|
|
- (void)getMomentsTopicListSuccess:(NSArray *)list state:(int)state;
|
|
|
|
- (void)getMomentsTopicFail:(NSString *)message state:(int)state;
|
|
|
|
///删除话题成功
|
|
- (void)deleteMomentsSuccess:(NSString *)momentsInfo;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|