1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 16:43:00 +08:00
osu-lazer/osu.Game/Configuration/DisplayNameAttribute.cs
2016-12-07 09:42:37 -05:00

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;
}
}
}