|
//
// orderHelpController.h
// ThePaperBase
//
// Created by YoungLee on 15/9/8.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPHttpController.h"
@protocol orderContentHelpDelegate <NSObject>
-(void) disHelp;
@end
@interface orderHelpController : TPHttpController
@property(nonatomic, strong)id<orderContentHelpDelegate> delegate;
@end
|