1 package com.android.wallpaper.picker.customization.shared.model
2 
3 import android.app.WallpaperColors
4 
5 sealed class WallpaperColorsModel {
6     /** State to represent that wallpaper colors has not been populated */
7     object Loading : WallpaperColorsModel()
8     /** State to represent that wallpaper colors has been populated */
9     data class Loaded(val colors: WallpaperColors?) : WallpaperColorsModel()
10 }
11