summaryrefslogtreecommitdiff
path: root/src/com/android/customization/picker/grid/ui/viewmodel/GridIconViewModel.kt
diff options
context:
space:
mode:
authorXin Li <delphij@google.com>2024-01-17 22:14:25 -0800
committerXin Li <delphij@google.com>2024-01-17 22:14:25 -0800
commit4625595c6abac84ecd205919be3891c5173f0f03 (patch)
tree56da2cbe6b60d177bd4773350293fdf74483bc2d /src/com/android/customization/picker/grid/ui/viewmodel/GridIconViewModel.kt
parent4cda95d0bdc80fb98f99770d2531f717f02cf664 (diff)
parente6571e6d719944d3e3a76f0fc82c6a1b813f7685 (diff)
downloadThemePicker-4625595c6abac84ecd205919be3891c5173f0f03.tar.gz
Merge Android 24Q1 Release (ab/11220357)
Bug: 319669529 Merged-In: If7c143c2d2c887cd941aedbfdf874aeac7277638 Change-Id: Ibc916c718fe83a32303797bfc0a7482034e4fbb0
Diffstat (limited to 'src/com/android/customization/picker/grid/ui/viewmodel/GridIconViewModel.kt')
-rw-r--r--src/com/android/customization/picker/grid/ui/viewmodel/GridIconViewModel.kt24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/com/android/customization/picker/grid/ui/viewmodel/GridIconViewModel.kt b/src/com/android/customization/picker/grid/ui/viewmodel/GridIconViewModel.kt
new file mode 100644
index 00000000..d12dc6c3
--- /dev/null
+++ b/src/com/android/customization/picker/grid/ui/viewmodel/GridIconViewModel.kt
@@ -0,0 +1,24 @@
+/*
+ * Copyright (C) 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+package com.android.customization.picker.grid.ui.viewmodel
+
+data class GridIconViewModel(
+ val columns: Int,
+ val rows: Int,
+ val path: String,
+)