social-aggregator/app/src/main/java/pl/edu/amu/wmi/socialaggregator/socialplatforms/Post.kt

8 lines
187 B
Kotlin
Raw Normal View History

package pl.edu.amu.wmi.socialaggregator.socialplatforms
2020-01-09 20:59:24 +01:00
data class Post(
val social: SocialPlatform,
val content: String,
val dateTime: String,
val images: List<String>
)