// Copyright Epic Games, Inc. All Rights Reserved. using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Jupiter.Implementation { public interface ILastAccessTracker { Task TrackUsed(T record); } public interface ILastAccessCache { Task> GetLastAccessedRecords(); } }