10 lines
267 B
C#
10 lines
267 B
C#
|
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);
|
||
|
}
|