| 123456789101112 |
- package com.example.snapshots
- import com.google.firebase.database.Exclude
- import com.google.firebase.database.IgnoreExtraProperties
- @IgnoreExtraProperties
- data class Snapshot(
- @get:Exclude var id: String = "",
- var title: String = "",
- var photoUrl: String = "",
- var likeList: Map<String, Boolean> = mutableMapOf()
- )
|