OSDN Git Service

UIを調整
[kcd/KCD.git] / KCD / HMMasterSTypeCommand.m
1 //
2 //  HMMasterSTypeCommand.m
3 //  KCD
4 //
5 //  Created by Hori,Masaki on 2014/02/13.
6 //  Copyright (c) 2014年 Hori,Masaki. All rights reserved.
7 //
8
9 #import "HMMasterSTypeCommand.h"
10
11 @implementation HMMasterSTypeCommand
12 - (NSArray *)ignoreKeys
13 {
14         static NSArray *ignoreKeys = nil;
15         if(ignoreKeys) return ignoreKeys;
16         
17         ignoreKeys = @[@"api_equip_type"];
18         return ignoreKeys;
19 }
20 - (NSString *)dataKey
21 {
22         return @"api_data.api_mst_stype";
23 }
24 - (void)execute
25 {
26         [self commitJSONToEntityNamed:@"MasterSType"];
27 }
28 @end