mirror of
https://github.com/SabreTools/SabreTools.RedumpLib.git
synced 2026-07-09 02:26:38 +00:00
26 lines
643 B
C#
26 lines
643 B
C#
using System;
|
|
|
|
namespace SabreTools.RedumpLib.Legacy.Attributes
|
|
{
|
|
/// <summary>
|
|
/// Generic attribute for human readable values
|
|
/// </summary>
|
|
public class HumanReadableAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// Item is marked as obsolete or unusable
|
|
/// </summary>
|
|
public bool Available { get; set; } = true;
|
|
|
|
/// <summary>
|
|
/// Human-readable name of the item
|
|
/// </summary>
|
|
public string? LongName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Internally used name of the item
|
|
/// </summary>
|
|
public string? ShortName { get; set; }
|
|
}
|
|
}
|