namespace PkmnLib.Static.Utils;
/// <summary>
/// Indicates that a value has a name.
/// </summary>
public interface INamedValue
{
/// The name of the value.
StringKey Name { get; }
}