|
//
// readHistoryViewModel.h
// ThePaperBase
//
// Created by Huixin on 15/9/29.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import <Foundation/Foundation.h>
@protocol readHistoryViewModelDelegate <NSObject>
@optional
- (void)returnReadHistoryList:(NSMutableArray*)data nextUrl:(NSString*)url;
- (void)returnErrorMessage:(NSString*)msg;
@end
@interface readHistoryViewModel : NSObject
@property(nonatomic, weak)id<readHistoryViewModelDelegate> delegate;
- (void)getReadHistoryWithURL:(NSString*)url;
@end
|