using System; namespace SabreTools.RedumpLib.Attributes { /// /// Generic attribute for human readable values /// public class HumanReadableAttribute : Attribute { /// /// Item is marked as obsolete or unusable /// public bool Available { get; set; } = true; /// /// Human-readable name of the item /// #if NET48 public string LongName { get; set; } #else public string? LongName { get; set; } #endif /// /// Internally used name of the item /// #if NET48 public string ShortName { get; set; } #else public string? ShortName { get; set; } #endif } }