OSDN Git Service

c12ca0eea0506f16bacad27d83bc4f09920f5092
[kcd/KCD.git] / KCD / MasterSlotItemMapper.swift
1 //
2 //  MasterSlotItemMapper.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 MasterSlotItemMapper: JSONMapper {
12     let apiResponse: APIResponse
13     let configuration = MappingConfiguration(entityType: KCMasterSlotItemObject.self,
14                                              dataKey: "api_data.api_mst_slotitem",
15                                              editorStore: ServerDataStore.oneTimeEditor())
16     
17     required init(_ apiResponse: APIResponse) {
18         self.apiResponse = apiResponse
19     }
20 }