6 lines
172 B
C#
6 lines
172 B
C#
namespace DotBased.AspNet.Authority.Interfaces;
|
|
|
|
public interface IVersionRepository<in TRepositoryObject>
|
|
{
|
|
public Task<long> GetVersionAsync(TRepositoryObject obj);
|
|
} |