Skip to content

Commit

Permalink
add : Dog data class 생성 #3
Browse files Browse the repository at this point in the history
  • Loading branch information
SeonHwan-Kim committed Apr 18, 2023
1 parent 730bff7 commit a9883b6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/src/main/java/org/android/go/sopt/data/Dog.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package org.android.go.sopt.data

import androidx.annotation.DrawableRes

data class Dog(
val name: String,
@DrawableRes val image: Int,
val size: String
)

0 comments on commit a9883b6

Please sign in to comment.