mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-19 02:24:19 +01:00
7 lines
193 B
C#
7 lines
193 B
C#
|
namespace DotBased.AspNet.Authority.Interfaces;
|
||
|
|
||
|
public interface ISecurityVersionRepository<in TRepositoryObject>
|
||
|
{
|
||
|
public Task<long> GetSecurityVersionAsync(TRepositoryObject obj);
|
||
|
|
||
|
}
|