server-master/srcs/PhoenixLib.DAL.EFCore.PGSQL/IGenericStringRepository.cs
2026-02-10 18:21:30 +01:00

7 lines
No EOL
202 B
C#

namespace PhoenixLib.DAL.EFCore.PGSQL
{
public interface IGenericStringRepository<TEntity> : IGenericAsyncRepository<TEntity, string>
where TEntity : class, IStringKeyEntity, new()
{
}
}