OSDN Git Service

UAをVersion/10.0.3 Safari/602.4.8に変更
[kcd/KCD.git] / KCD / MasterMapInfoMapper.swift
1 //
2 //  MasterMapInfoMapper.swift
3 //  KCD
4 //
5 //  Created by Hori,Masaki on 2017/02/23.
6 //  Copyright © 2017年 Hori,Masaki. All rights reserved.
7 //
8
9 import Cocoa
10
11 class MasterMapInfoMapper: JSONMapper {
12     typealias ObjectType = MasterMapInfo
13     
14     let apiResponse: APIResponse
15     let configuration = MappingConfiguration(entity: MasterMapInfo.entity,
16                                              dataKeys: ["api_data", "api_mst_mapinfo"],
17                                              editorStore: ServerDataStore.oneTimeEditor())
18     
19     required init(_ apiResponse: APIResponse) {
20         self.apiResponse = apiResponse
21     }
22 }