document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package com.example.affirmations.model
  2.  
  3. import androidx.annotation.DrawableRes
  4. import androidx.annotation.StringRes
  5.  
  6.  
  7. data class Affirmation(
  8.     @StringRes val stringResourceId: Int,
  9.     @DrawableRes val imageResourceId: Int
  10. )
');