7 lines
170 B
C#
7 lines
170 B
C#
namespace DotBased.AspNet.Authority.Repositories;
|
|
|
|
public interface IAuthorityRepository
|
|
{
|
|
public Task<long> GetVersion();
|
|
public Task SetVersion(long version);
|
|
} |