-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJobShortInfoListModel.h
More file actions
executable file
·38 lines (27 loc) · 1.01 KB
/
JobShortInfoListModel.h
File metadata and controls
executable file
·38 lines (27 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// JobShortInfoListModel.h
// CollectionCellWithTableView
//
// Created by apple on 16/4/5.
// Copyright © 2016年 kun. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface JobShortInfoModel : NSObject
@property (nonatomic, strong) NSString *educational;
@property (nonatomic, strong) NSString *experience;
@property (nonatomic, strong) NSString *location;
@property (nonatomic, strong) NSString *salary;
@end
@interface PubliserInfoModel : NSObject
@property (nonatomic, strong) NSString *companyName;
@property (nonatomic, strong) NSString *companySize;
@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSString *position;
@property (nonatomic, strong) NSString *publiserIcon;
@end
@interface JobShortInfoListModel : NSObject
@property (nonatomic, strong) NSString *jobName;
@property (nonatomic, strong) JobShortInfoModel *jobShortInfoModel;
@property (nonatomic, strong) PubliserInfoModel *publiserInfoModel;
@property (nonatomic, strong) NSString *lastRespond;
@end