Kit.Core/LibCommon/Kit.Core.Helpers/Attributes/NeedToGenerateJsDocAttribut...

10 lines
635 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace Kit.Helpers
{
/// <summary> Атрибут, указывающий на то, что для данного класса нужно сформировать JsDoc-<see langword="@typedef"/> </summary>
/// <remarks> Описания класса и полей, которые нужно включить в генерацию, нужно указывать с помощью <see cref="System.ComponentModel.DescriptionAttribute"/> </remarks>
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
public sealed class NeedToGenerateJsDocAttribute : Attribute { }
}