/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Contracts/IDevToolsSettingsService.cs
23 строки
606 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 IDevToolsSettingsService : IBaseSettingsService, INotifyPropertyChanged { /// <summary> /// Gets or sets a value when the Open in IDE button should be displayed on the status bar. /// </summary> OpenInIDEOption OpenInIDEOption { get; set; } /// <summary> /// Gets or sets the path of the chosen IDE. /// </summary> string IDEPath { get; set; } /// <summary> /// Gets or sets the name of the chosen IDE. /// </summary> string IDEName { get; set; } } }