mirror of
https://github.com/SimpleMobileTools/Simple-Camera.git
synced 2025-04-17 08:47:23 +02:00
10 lines
229 B
Kotlin
10 lines
229 B
Kotlin
package com.simplemobiletools.camera.models
|
|
|
|
import androidx.annotation.DrawableRes
|
|
import androidx.annotation.IdRes
|
|
|
|
data class ResolutionOption(
|
|
@IdRes val buttonViewId: Int,
|
|
@DrawableRes val imageDrawableResId: Int,
|
|
)
|