using Newsbot.Collector.Domain.Entities; namespace Newsbot.Collector.Domain.Interfaces; public interface IRefreshTokenRepository { void Add(RefreshTokenEntity entity); public RefreshTokenEntity? Get(string token); void UpdateTokenIsUsed(string token); }