Advertisement
afiqakram

Affirmation.kt

Jun 10th, 2024
88
0
201 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.23 KB | None | 0 0
  1. package com.example.affirmations.model
  2.  
  3. import androidx.annotation.DrawableRes
  4. import androidx.annotation.StringRes
  5.  
  6. data class Affirmation(
  7.     @StringRes val stringResourceId: Int,
  8.     @DrawableRes val imageResourceId: Int
  9. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement