// // FKCirDetailRequest.h // FirstLink // // Created by jack on 16/6/16. // Copyright © 2016年 FirstLink. All rights reserved. // #import @interface FKCirDetailRequest : NSObject + (void)reqCirDetailWithID:(NSString *)shareId identify:(int)identify delegate:(id )delegate; + (void)reqCirRelativeListWithID:(NSString *)shareId startRow:(NSUInteger)startRow identify:(int)identify delegate:(id )delegate; + (void)reqCommentWithID:(NSString *)shareId replyToUserID:(NSString *)replyToUserID content:(NSString *)content identify:(int)identify delegate:(id )delegate; + (void)reqRmoveCommentWithID:(NSString *)commentID identify:(int)identify delegate:(id )delegate; + (void)reqLike:(BOOL)like identify:(int)identify itemID:(NSString *)itemID delegate:(id )delegate; + (void)reqShareUrlWithIdentify:(int)identify shareID:(NSString *)shareID deleagate:(id)delegate; @end