/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Contracts/IAppSettingsService.cs
24 строки
814 B
Yair
Code Quality: Updated license header
31 дек 2024, 05:03
31 дек 2024, 05:03
8436c6d
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Data.Contracts { public interface IAppSettingsService : IBaseSettingsService, INotifyPropertyChanged { /// <summary> /// Gets or sets a value indicating whether or not to show the StatusCenter teaching tip. /// </summary> bool ShowStatusCenterTeachingTip { get; set; } /// <summary> /// Gets or sets a value indicating whether or not to show the notification to inform background running. /// </summary> bool ShowBackgroundRunningNotification { get; set; } /// <summary> /// Gets or sets a value indicating whether or not to restore tabs on startup. /// This is used when prompting users to restart after changing the app language. /// </summary> bool RestoreTabsOnStartup { get; set; } } }