-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature/380] 앱 업데이트 버전을 조회하는 API를 구현한다 (#387)
* feat: 앱 업데이트 버전을 조회하는 API를 구현한다 * feat: api 설명 달기
- Loading branch information
1 parent
3b7a864
commit ed21e9f
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
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
7 changes: 7 additions & 0 deletions
7
api/src/main/kotlin/com/nexters/bottles/api/auth/facade/dto/UpdateAppVersionResponse.kt
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,7 @@ | ||
package com.nexters.bottles.api.auth.facade.dto | ||
|
||
data class UpdateAppVersionResponse( | ||
val minimumIosVersion: String? = null, // 이 버전 미만이면 강제 업데이트를 해야합니다 | ||
val minimumAndroidVersion: String? = null, | ||
) { | ||
} |