/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Contracts/IApplicationSettingsService.cs
29 строк
917 B
Yair
Code Quality: Ran code cleanup (#17307)
25 июл 2025, 03:57
Не верифицирован
25 июл 2025, 03:57
4558bc2
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Data.Contracts { public interface IApplicationSettingsService : IBaseSettingsService { /// <summary> /// Gets or sets a value indicating whether or not the user clicked the 'review' prompt. /// </summary> bool HasClickedReviewPrompt { get; set; } /// <summary> /// Gets or sets a value indicating whether or not the user clicked the 'sponsor' prompt. /// </summary> bool HasClickedSponsorPrompt { get; set; } /// <summary> /// Gets or sets a value indicating whether or not to display a prompt when running the app as administrator. /// </summary> bool ShowRunningAsAdminPrompt { get; set; } /// <summary> /// Gets or sets a value indicating whether or not to display a prompt when creating an alternate data stream. /// </summary> bool ShowDataStreamsAreHiddenPrompt { get; set; } } }