2021-08-18 15:32:45 -07:00
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace RedumpLib.Attributes
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Generic attribute for human readable values
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class HumanReadableAttribute : Attribute
|
|
|
|
|
{
|
2021-08-18 22:13:38 -07:00
|
|
|
/// <summary>
|
|
|
|
|
/// Item is marked as obsolete or unusable
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool Available { get; set; } = true;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Human-readable name of the item
|
|
|
|
|
/// </summary>
|
2021-08-18 15:32:45 -07:00
|
|
|
public string LongName { get; set; }
|
|
|
|
|
|
2021-08-18 22:13:38 -07:00
|
|
|
/// <summary>
|
|
|
|
|
/// Internally used name of the item
|
|
|
|
|
/// </summary>
|
2021-08-18 15:32:45 -07:00
|
|
|
public string ShortName { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|