18 lines
328 B
Objective-C
18 lines
328 B
Objective-C
//
|
|
// BrandDetailViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/10/28.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "BaseVIewContorller.h"
|
|
#import "BrandModel.h"
|
|
@interface BrandDetailViewController : BaseVIewContorller
|
|
|
|
@property(nonatomic,strong) BrandModel *model;
|
|
|
|
|
|
@end
|