18 lines
399 B
Objective-C
18 lines
399 B
Objective-C
//
|
|
// GIGaFeedKind.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/23.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <JSONModel/JSONModel.h>
|
|
|
|
@interface GIGaFeedKind : JSONModel
|
|
@property (nonatomic,copy) NSString *feed_id;
|
|
@property (nonatomic,copy) NSString *remarks;
|
|
@property (nonatomic,copy) NSString *dictLabel;
|
|
@property (nonatomic,copy) NSString *dictCode;
|
|
|
|
@end
|