mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
17 lines
531 B
C#
17 lines
531 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Data;
|
|
using Bit.Core.Models.Table;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface IApplicationCacheService
|
|
{
|
|
Task<IDictionary<Guid, OrganizationAbility>> GetOrganizationAbilitiesAsync();
|
|
Task<IDictionary<Guid, ProviderAbility>> GetProviderAbilitiesAsync();
|
|
Task UpsertOrganizationAbilityAsync(Organization organization);
|
|
Task DeleteOrganizationAbilityAsync(Guid organizationId);
|
|
}
|
|
}
|