System.ClientModel.Primitives.ClientEntry
class ClientEntry
Represents a cached client and its last-used timestamp.
namespace System.ClientModel.Primitives
{
internal class ClientEntry
{
public object Client { get; }
public long LastUsed { get; set; }
public ClientEntry(object client, long lastUsed);
}
}