📄 src/Domain/IMediaRepository.cs
1 2 3 4 5 6 7 8 9 10
using System.Threading;
using System.Threading.Tasks;

namespace Slopper.Domain;

public interface IMediaRepository
{
    Task<MediaItem> GetRandomMediaItem(CancellationToken cancellationToken);
}