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 = mutableMapOf() )