9 lines
No EOL
206 B
C#
9 lines
No EOL
206 B
C#
using IdentityShroud.Core.Model;
|
|
|
|
namespace IdentityShroud.Core.Contracts;
|
|
|
|
public interface IRealmContext
|
|
{
|
|
public Realm GetRealm();
|
|
Task<IList<RealmDek>> GetDeks(CancellationToken ct = default);
|
|
} |