/
smwwiki
/
OneScript_fork
Обзор
Документация
Войти
/
smwwiki
/
OneScript_fork
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/ScriptEngine/Machine/Contexts/DocumenterHintAttribute.cs
29 строк
743 B
Andrei Ovsiankin
Вспомогательный атрибут для документера
24 сен 2018, 12:00
24 сен 2018, 12:00
e42937f
Код
Авторство
О чём код?
/*---------------------------------------------------------- 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 ScriptEngine.Machine.Contexts { [AttributeUsage(AttributeTargets.Class|AttributeTargets.Enum)] public class DocumenterHintAttribute : Attribute { public string Name { get; set; } public string Alias { get; set; } public ContextKind Kind { get; set; } } public enum ContextKind { Class, GlobalContext, Enumeration } }