mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-28 08:50:23 +08:00
10 lines
170 B
C#
10 lines
170 B
C#
using MediatR;
|
|
|
|
namespace BuildingBlocks.Caching;
|
|
|
|
public interface ICacheRequest
|
|
{
|
|
string CacheKey { get; }
|
|
DateTime? AbsoluteExpirationRelativeToNow { get; }
|
|
}
|