Skip to content

Commit

Permalink
#213: KakaoLocalMeetingModel > MeetingLoactionResponseModel 네이밍 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-muuu committed Mar 26, 2023
1 parent ea233d3 commit 573d78d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
21 changes: 0 additions & 21 deletions Zatch/Data/Models/ChattingModels/KakaoLocalMeetingModel.swift

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
//
// MeetingLoactionResponseModel.swift
// Zatch
//
// Created by 박지윤 on 2022/09/18.
//

import Foundation

struct MeetingLoactionResponseModel: Decodable{
let documents: [MeetingLocationModel]
}

struct MeetingLocationModel: Decodable{
let road_address: RoadAddressModel
}

struct RoadAddressModel: Decodable{
let address_name: String
let building_name: String
}

0 comments on commit 573d78d

Please sign in to comment.