mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-02-14 20:24:46 +00:00
chore: moved some core interfaces into their own files
This commit is contained in:
14
src/Pepperdash.Core/IKeyed.cs
Normal file
14
src/Pepperdash.Core/IKeyed.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user