-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#213: KakaoLocalMeetingModel > MeetingLoactionResponseModel 네이밍 변경
- Loading branch information
Showing
2 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
21 changes: 0 additions & 21 deletions
21
Zatch/Data/Models/ChattingModels/KakaoLocalMeetingModel.swift
This file was deleted.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
Zatch/Data/Models/ChattingModels/MeetingLoactionResponseModel.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |