/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/Workspaces/WorkspacesEditor/Utils/ParsingResult.cs
15 строк
480 B
Laszlo Nemeth
[Workspaces] implement the move feature (#35480)
04 дек 2024, 20:17
Не верифицирован
04 дек 2024, 20:17
89be43e
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace WorkspacesEditor.Utils { public readonly struct ParsingResult(bool result, string message = "", string data = "") { public bool Result { get; } = result; public string Message { get; } = message; public string MalformedData { get; } = data; } }