Update spam circle cache after updating circle status.
This commit is contained in:
7
JSMR.Application/Common/Caching/ICacheObject.cs
Normal file
7
JSMR.Application/Common/Caching/ICacheObject.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace JSMR.Application.Common.Caching;
|
||||
|
||||
public interface ICacheObject<T>
|
||||
{
|
||||
Task<T> GetAsync(CancellationToken cancellationToken = default);
|
||||
Task<T> RefreshAsync(CancellationToken cancellationToken = default);
|
||||
}
|
||||
Reference in New Issue
Block a user