/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Models/OmnibarPathModeSuggestionModel.cs
20 строк
452 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 using Files.App.Controls; namespace Files.App.Data.Models { internal record OmnibarPathModeSuggestionModel(string Path, string DisplayName) : IOmnibarTextMemberPathProvider { public string GetTextMemberPath(string textMemberPath) { return textMemberPath switch { nameof(Path) => Path, nameof(DisplayName) => DisplayName, _ => string.Empty }; } } }