6 lines
89 B
C#
6 lines
89 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IKeyed<T>
|
|
{
|
|
public T Id { get; }
|
|
} |