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

8 lines
No EOL
137 B
C#

using System;
namespace PhoenixLib.Caching
{
public interface IUuidKeyCachedRepository<T> : ICachedRepository<Guid, T>
{
}
}