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