GLD_ListViewModelProtocol.h 378 Bytes
//
//  GLD_ListViewModelProtocol.h
//  YX_BaseProject
//
//  Created by yiyangkeji on 2018/4/16.
//  Copyright © 2018年 com.yxvzb. All rights reserved.
//

#import <Foundation/Foundation.h>

@class GLD_ListViewModel;

@protocol GLD_ListViewModelProtocol <NSObject>

- (NSMutableArray *)allData;

- (RACCommand *)refreshCommand;
@optional
- (RACCommand *)loadMoreCommand;
@end