mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 03:12:11 +08:00
8 lines
154 B
C#
8 lines
154 B
C#
namespace BuildingBlocks.Caching;
|
|
|
|
public interface ICacheRequest
|
|
{
|
|
string CacheKey { get; }
|
|
DateTime? AbsoluteExpirationRelativeToNow { get; }
|
|
}
|