OSDN Git Service

2181149c07ca5ec86d978fc04c50c7d0c8dd0e46
[kcd/KCD.git] / KCD / MasterMapAreaMapper.swift
1 //
2 //  MasterMapAreaMapper.swift
3 //  KCD
4 //
5 //  Created by Hori,Masaki on 2017/02/22.
6 //  Copyright © 2017年 Hori,Masaki. All rights reserved.
7 //
8
9 import Cocoa
10
11 final class MasterMapAreaMapper: JSONMapper {
12         
13     let apiResponse: APIResponse
14     let configuration = MappingConfiguration(entity: MasterMapArea.entity,
15                                              dataKeys: ["api_data", "api_mst_maparea"],
16                                              editorStore: ServerDataStore.oneTimeEditor())
17     
18     required init(_ apiResponse: APIResponse) {
19         
20         self.apiResponse = apiResponse
21     }
22 }