| 123456789101112131415161718 |
- //
- // ShareProtocol.h
- // model
- //
- // Created by Drew on 2018/10/28.
- // Copyright © 2018年 Mine. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol ShareProtocol <NSObject>
- -(void)shareModel;
- -(void)shareMember;
- @end
- NS_ASSUME_NONNULL_END
|