0
0
mirror of https://github.com/Shchoholiev/shopping-assistant-api.git synced 2025-06-29 18:21:11 +00:00
shopping-assistant-api/ShoppingAssistantApi.Application/IRepositories/IRefreshTokensRepository.cs
2023-10-14 19:55:13 +00:00

9 lines
187 B
C#

using ShoppingAssistantApi.Domain.Entities;
namespace ShoppingAssistantApi.Application.IRepositories;
public interface IRefreshTokensRepository : IBaseRepository<RefreshToken>
{
}