mirror of
https://github.com/digital-jellyfish/Virtu.git
synced 2024-11-30 20:49:26 +00:00
16 lines
387 B
C#
16 lines
387 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Jellyfish.Library
|
|||
|
{
|
|||
|
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true, Inherited = false)]
|
|||
|
public sealed class AssemblyCommentAttribute : Attribute
|
|||
|
{
|
|||
|
public AssemblyCommentAttribute(string comment)
|
|||
|
{
|
|||
|
Comment = comment;
|
|||
|
}
|
|||
|
|
|||
|
public string Comment { get; private set; }
|
|||
|
}
|
|||
|
}
|