15 lines
291 B
Objective-C
15 lines
291 B
Objective-C
//
|
|
// FishTankModel.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/10/2.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface FishTankModel : NSObject
|
|
@property(nonatomic,copy)NSString*brandImage;
|
|
@property(nonatomic,copy)NSString*brandName;
|
|
@end
|