Skip to content

Commit

Permalink
리퀘스트 타입 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
gidskql6671 committed May 28, 2024
1 parent a28a580 commit 07b36ee
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package knu.dong.onedayonebaek.github.dto

import java.time.LocalDateTime
import java.time.ZonedDateTime

data class CommitWebhookRequest(
val pusher: Pusher,
val commits: List<Commit> = ArrayList()
) {
data class Commit (val url: String, val message: String, val timestamp: LocalDateTime)
data class Commit (val url: String, val message: String, val timestamp: ZonedDateTime)
data class Pusher (val name: String, val email: String)
}

0 comments on commit 07b36ee

Please sign in to comment.