using System;
namespace 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
///
public string LongName { get; set; }
///
/// Internally used name of the item
///
public string ShortName { get; set; }
}
}