mirror of
https://github.com/digital-jellyfish/Virtu.git
synced 2024-11-23 19:30:59 +00:00
eaaab47a6c
--HG-- extra : convert_revision : svn%3Affd33b8c-2492-42e0-bdc5-587b920b7d6d/trunk%4019155
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; }
|
|
}
|
|
}
|