ShareProtocol.h 289 B

123456789101112131415161718
  1. //
  2. // ShareProtocol.h
  3. // model
  4. //
  5. // Created by Drew on 2018/10/28.
  6. // Copyright © 2018年 Mine. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol ShareProtocol <NSObject>
  11. -(void)shareModel;
  12. -(void)shareMember;
  13. @end
  14. NS_ASSUME_NONNULL_END