/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
src/VSCode.DebugAdapter/DebugeeOutputEventArgs.cs
23 строки
677 B
Andrei Ovsiankin
Исправлен тест комментария лицензии
31 май 2020, 22:45
31 май 2020, 22:45
45a4721
Код
Авторство
О чём код?
/*---------------------------------------------------------- This Source Code Form is subject to the terms of the Mozilla Public License, v.2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. ----------------------------------------------------------*/ using System; namespace VSCode.DebugAdapter { internal class DebugeeOutputEventArgs : EventArgs { public DebugeeOutputEventArgs(string category, string content) { this.Category = category; this.Content = content; } public string Category { get; } public string Content { get; } } }