123456789101112131415161718192021222324 |
- //
- // FKBookPreferRequest.h
- // FirstLink
- //
- // Created by jack on 16/5/12.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #define K_BOOK_PREFER_LIST_REQ 1002
- #define K_BOOK_PREFER_SAVE_REQ 1003
- @interface FKBookPreferRequest : NSObject
- + (void)reqPreferListWithIdentify:(int)identify
- delegate:(id<FLNetworkDelegate>)delegate;
- + (void)requestCreatePreferList:(NSArray *)preferList
- identify:(int)identify
- delegate:(id<FLNetworkDelegate>)delegate;
- @end
|