|
//
// pushMsgController.h
// ThePaperHD
//
// Created by liyuan on 15/7/20.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPTableViewController.h"
@protocol pushMsgDelegate <NSObject>
@optional
-(void)pushMsgToNotification:(letterBO *) bo;
@end
@interface pushMsgController : TPTableViewController
@property(nonatomic, strong)id<pushMsgDelegate> pushDelegate;
@end
|