Skip to content

Commit

Permalink
add IRepositoryWithLongKey interface
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzhiyuan committed Jul 12, 2024
1 parent 7284131 commit 28bdecd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/NuClear.Dapper/IRepositoryWithLongKey.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace NuClear.Dapper
{
public interface IRepositoryWithLongKey<TEntity> : IRepository<long, TEntity>
where TEntity : IEntity<long>
{
}
}

0 comments on commit 28bdecd

Please sign in to comment.