16e80583aSopenharmony_ci/** 26e80583aSopenharmony_ci * Copyright (c) 2021-2022 Huawei Device Co., Ltd. 36e80583aSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"); 46e80583aSopenharmony_ci * you may not use this file except in compliance with the License. 56e80583aSopenharmony_ci * You may obtain a copy of the License at 66e80583aSopenharmony_ci * 76e80583aSopenharmony_ci * http://www.apache.org/licenses/LICENSE-2.0 86e80583aSopenharmony_ci * 96e80583aSopenharmony_ci * Unless required by applicable law or agreed to in writing, software 106e80583aSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS, 116e80583aSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 126e80583aSopenharmony_ci * See the License for the specific language governing permissions and 136e80583aSopenharmony_ci * limitations under the License. 146e80583aSopenharmony_ci */ 156e80583aSopenharmony_ci 166e80583aSopenharmony_ciimport BaseColumns from './BaseColumns'; 176e80583aSopenharmony_ci 186e80583aSopenharmony_ci/** 196e80583aSopenharmony_ci * GridLayoutInfo Columns 206e80583aSopenharmony_ci */ 216e80583aSopenharmony_ciexport default class DesktopApplicationColumns extends BaseColumns { 226e80583aSopenharmony_ci static readonly APP_NAME: string = 'app_name'; 236e80583aSopenharmony_ci static readonly IS_SYSTEM_APP: string = 'is_system_app'; 246e80583aSopenharmony_ci static readonly IS_UNINSTALLABLE: string = 'is_uninstallAble'; 256e80583aSopenharmony_ci static readonly BADGE_NUMBER: string = 'badge_number'; 266e80583aSopenharmony_ci static readonly APPICON_ID: string = 'appIcon_id'; 276e80583aSopenharmony_ci static readonly APPLABEL_ID: string = 'appLabel_id'; 286e80583aSopenharmony_ci static readonly BUNDLE_NAME: string = 'bundle_name'; 296e80583aSopenharmony_ci static readonly MODULE_NAME: string = 'module_name'; 306e80583aSopenharmony_ci static readonly ABILITY_NAME: string = 'ability_name'; 316e80583aSopenharmony_ci static readonly KEY_NAME: string = 'key_name'; 326e80583aSopenharmony_ci static readonly INSTALL_TIME: string = 'install_time'; 336e80583aSopenharmony_ci static readonly EXTEND1: string = 'extend1'; 346e80583aSopenharmony_ci static readonly EXTEND2: string = 'extend2'; 356e80583aSopenharmony_ci static readonly EXTEND3: string = 'extend3'; 366e80583aSopenharmony_ci}