Files
Toolkit2/Toolkit.Foundation/IKeyed.cs
T

6 lines
89 B
C#

namespace Toolkit.Foundation;
public interface IKeyed<T>
{
public T Id { get; }
}