/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Contracts/IActionsSettingsService.cs
13 строк
350 B
yair100
Code Quality: Updated headers
01 июл 2026, 06:18
01 июл 2026, 06:18
c27305a
Код
Авторство
О чём код?
// Copyright (c) Files Community // SPDX-License-Identifier: MPL-2.0 namespace Files.App.Data.Contracts { internal interface IActionsSettingsService : IBaseSettingsService, INotifyPropertyChanged { /// <summary> /// A dictionary to determine the custom hotkeys /// </summary> List<ActionWithParameterItem>? ActionsV2 { get; set; } } }