1 // Copyright 2015-present 650 Industries. All rights reserved.
2 package host.exp.exponent.storage
3 
4 import com.raizlabs.android.dbflow.annotation.Column
5 import com.raizlabs.android.dbflow.annotation.PrimaryKey
6 import com.raizlabs.android.dbflow.annotation.Table
7 
8 @Table(database = ExponentDB::class)
9 class ExperienceDBObject(
10   @PrimaryKey @Column(name = "id") var scopeKey: String? = null,
11   @Column var manifestUrl: String? = null,
12   @Column var bundleUrl: String? = null,
13   @Column var manifest: String? = null
14 )
15