mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-02-13 11:44:46 +00:00
14 lines
264 B
C#
14 lines
264 B
C#
namespace PepperDash.Core
|
|
{
|
|
/// <summary>
|
|
/// Unique key interface to require a unique key for the class
|
|
/// </summary>
|
|
public interface IKeyed
|
|
{
|
|
/// <summary>
|
|
/// Unique Key
|
|
/// </summary>
|
|
string Key { get; }
|
|
}
|
|
|
|
} |