|
//
// letterController.h
// ThePaperHD
//
// Created by liyuan on 15/7/15.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPHttpController.h"
@protocol letterListDelegate <NSObject>
-(void) listGotoOtherVC:(letterBO*) bo;
@end
@interface letterController : TPTableViewController
@property(nonatomic, weak)id<letterListDelegate> letterlistDele;
@property(nonatomic, assign)BOOL isRequest;
@end
|