mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 08:49:59 +09:00
16 lines
330 B
C#
16 lines
330 B
C#
using System;
|
|
namespace osu.Game.Configuration
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
|
public class DisplayNameAttribute : Attribute
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public DisplayNameAttribute(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
}
|
|
}
|
|
|