package io.rebble.libpebblecommon.database.entity import androidx.room.Entity import androidx.room.PrimaryKey import androidx.sqlite.SQLiteConnection import androidx.sqlite.execSQL @Entity data class VibePatternEntity( @PrimaryKey val name: String, val pattern: List, val bundled: Boolean, )