GiGaMaskTime/GIGA/Modules/Me/Model/GIGaFeedKind.m

22 lines
392 B
Objective-C

//
// GIGaFeedKind.m
// GIGA
//
// Created by lianxiang on 2018/9/23.
// Copyright © 2018年 com.giga.ios. All rights reserved.
//
#import "GIGaFeedKind.h"
@implementation GIGaFeedKind
+(JSONKeyMapper *)keyMapper{
return [[JSONKeyMapper alloc] initWithModelToJSONDictionary:@{@"feed_id":@"id"}];
}
+ (BOOL)propertyIsOptional:(NSString *)propertyName{
return YES;
}
@end