20 lines
376 B
Objective-C
20 lines
376 B
Objective-C
//
|
||
// ConnectInfoCollectionModel.h
|
||
// Ifish
|
||
//
|
||
// Created by ifish7-ios on 16/3/29.
|
||
// Copyright © 2016年 imac. All rights reserved.
|
||
//
|
||
|
||
#import <Foundation/Foundation.h>
|
||
|
||
@interface ConnectInfoCollectionModel : NSObject
|
||
|
||
@property (nonatomic,copy) NSString *IconImage;
|
||
|
||
@property (nonatomic,copy) NSString *title;
|
||
|
||
@property (nonatomic,copy) NSString *connect;
|
||
|
||
@end
|