Skip to content

Instantly share code, notes, and snippets.

View LeoDroidCoder's full-sized avatar

Leonid Ustenko LeoDroidCoder

View GitHub Profile
@LeoDroidCoder
LeoDroidCoder / AdMobBannerData.kt
Created September 14, 2020 20:53
A gist for the article on FirebaseRemote config https://medium.com/p/89687a78e367
package com.leodroidcoder.remoteconfigsample
import com.google.gson.annotations.SerializedName
data class AdMobBannerData(
@SerializedName("id") val id: String,
@SerializedName("enabled") val enabled: Boolean
)