diff --git a/core/domain/src/main/java/com/moya/funch/entity/SubwayStation.kt b/core/domain/src/main/java/com/moya/funch/entity/SubwayStation.kt index e5385bc2..b7c532d2 100644 --- a/core/domain/src/main/java/com/moya/funch/entity/SubwayStation.kt +++ b/core/domain/src/main/java/com/moya/funch/entity/SubwayStation.kt @@ -16,7 +16,6 @@ enum class SubwayLine { EIGHT, NINE, AIRPORT, - BUNDANG, EVERLINE, GYEONGCHUN, GYEONGUI, diff --git a/core/domain/src/main/java/com/moya/funch/entity/profile/Profile.kt b/core/domain/src/main/java/com/moya/funch/entity/profile/Profile.kt index 55e6d819..796245fe 100644 --- a/core/domain/src/main/java/com/moya/funch/entity/profile/Profile.kt +++ b/core/domain/src/main/java/com/moya/funch/entity/profile/Profile.kt @@ -13,5 +13,5 @@ data class Profile( val clubs: List = emptyList(), val mbti: Mbti = Mbti.IDLE, val blood: Blood = Blood.IDLE, - val subwayNames: List = emptyList(), + val subways: List = emptyList(), )