Skip to content

Commit

Permalink
feat/#17 : Result 타입 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
shinythinking committed Feb 18, 2025
1 parent 887581b commit 6306906
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.boostcamp.mapisode.home.common

import com.naver.maps.geometry.LatLng

data class ResultEpisode(
val id: String,
val owner: String,
val distance: String,
val reason: String,
val thumbnail: String,
val coordinates: LatLng
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package com.boostcamp.mapisode.home.common

enum class ResultType {
LIST_VIEW,
MAP_VIEW,
}

0 comments on commit 6306906

Please sign in to comment.