server-master/srcs/PhoenixLib.Caching/ILongKeyCachedRepository.cs
2026-02-10 18:21:30 +01:00

6 lines
No EOL
122 B
C#

namespace PhoenixLib.Caching
{
public interface ILongKeyCachedRepository<T> : ICachedRepository<long, T>
{
}
}