//
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
//
using Astral.Core.Entities;
namespace Astral.Core.RepositoryInterfaces;
///
/// Repository.
///
public interface IRefreshTokenRepository : IGenericRepository
{
///
/// Revoke all tokens for the provided user id.
///
/// User id.
Task RevokeAllForUser(Guid userId);
}