namespace PepperDash.Core { /// /// Unique key interface to require a unique key for the class /// public interface IKeyed { /// /// Unique Key /// string Key { get; } } }