12 lines
359 B
C#
12 lines
359 B
C#
using System;
|
|
|
|
namespace Seagull.Interior_01.Utility {
|
|
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
|
|
public class YureiButtonAttribute : Attribute {
|
|
public string text { get; set; } = null;
|
|
|
|
public YureiButtonAttribute(string buttonText) {
|
|
text = buttonText;
|
|
}
|
|
}
|
|
} |