20 lines
452 B
C#
20 lines
452 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Voile.Patchouli.Reflection
|
|
{
|
|
[System.AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
|
|
public class DisplayNameAttribute : Attribute
|
|
{
|
|
public DisplayNameAttribute(string displayName)
|
|
{
|
|
DisplayName = displayName;
|
|
}
|
|
|
|
public string DisplayName { get; }
|
|
}
|
|
}
|