chore: moved some core interfaces into their own files

This commit is contained in:
Nick Genovese
2024-10-31 08:29:25 -04:00
parent 0bc2a00e6e
commit 2755377a17
3 changed files with 29 additions and 32 deletions

View 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; }
}
}