mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-25 06:44:03 +08:00
12 lines
176 B
C#
12 lines
176 B
C#
using System;
|
|
using System.Linq;
|
|
using MediatR;
|
|
|
|
namespace BuildingBlocks.Caching
|
|
{
|
|
public interface IInvalidateCacheRequest
|
|
{
|
|
string CacheKey { get; }
|
|
}
|
|
}
|