// // MasterSlotItemMapper.swift // KCD // // Created by Hori,Masaki on 2017/02/23. // Copyright © 2017年 Hori,Masaki. All rights reserved. // import Cocoa class MasterSlotItemMapper: JSONMapper { typealias ObjectType = MasterSlotItem let apiResponse: APIResponse let configuration = MappingConfiguration(entity: MasterSlotItem.entity, dataKey: "api_data.api_mst_slotitem", editorStore: ServerDataStore.oneTimeEditor()) required init(_ apiResponse: APIResponse) { self.apiResponse = apiResponse } }