IdentityShroud/IdentityShroud.Core/Contracts/IRealmContext.cs

9 lines
206 B
C#
Raw Permalink Normal View History

using IdentityShroud.Core.Model;
namespace IdentityShroud.Core.Contracts;
public interface IRealmContext
{
public Realm GetRealm();
Task<IList<RealmDek>> GetDeks(CancellationToken ct = default);
}