This repository has been archived on 2023-12-10. You can view files and clone it, but cannot push or open issues or pull requests.
PainterlyUNO/Matrix App/PregeneratedMods/reflection/UIDescriptionAttribute.cs

17 lines
413 B
C#
Raw Normal View History

2021-06-09 19:19:30 +00:00
using System;
2021-06-11 11:36:55 +00:00
namespace Matrix_App.PregeneratedMods.reflection
2021-06-09 19:19:30 +00:00
{
[AttributeUsage(AttributeTargets.Field)]
public class UiDescriptionAttribute : Attribute
{
public string title;
public string description;
public UiDescriptionAttribute(string title, string description)
{
this.title = title;
this.description = description;
}
}
}