PkmnLib.NET/PkmnLib.Static/Utils/INamedValue.cs

12 lines
229 B
C#
Raw Normal View History

2024-07-20 14:12:39 +00:00
namespace PkmnLib.Static.Utils;
/// <summary>
/// Indicates that a value has a name.
/// </summary>
public interface INamedValue
{
/// <summary>
/// The name of the value.
/// </summary>
StringKey Name { get; }
}