
- 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
25 lines
477 B
Objective-C
25 lines
477 B
Objective-C
//
|
|
// YMMineShareViewController.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/6/27.
|
|
//
|
|
|
|
#import "BaseViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class XPShareInfoModel;
|
|
|
|
typedef NS_ENUM(NSInteger, MineShareType) {
|
|
///分享动态
|
|
MineShareType_Monents = 1,
|
|
};
|
|
|
|
@interface XPMineShareViewController : BaseViewController
|
|
@property (nonatomic,strong) XPShareInfoModel *shareInfo;
|
|
///分享的类型
|
|
@property (nonatomic,assign) MineShareType shareType;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|