Skip to content

Commit

Permalink
feat : OAuthUrl (dto)
Browse files Browse the repository at this point in the history
  • Loading branch information
hangunhee39 committed Jan 18, 2024
1 parent d3719f5 commit b8af354
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.droidblossom.archive.data.dto.auth.response

import com.droidblossom.archive.domain.model.auth.OAuthUrl

data class OAuthUrlResponseDto(
val url: String
){
fun toModel() = OAuthUrl(
url = this.url
)
}

0 comments on commit b8af354

Please sign in to comment.