mirror of
https://github.com/bitwarden/server.git
synced 2026-02-01 22:53:12 +08:00
16 lines
453 B
C#
16 lines
453 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 UpsertOrganizationAbilityAsync(Organization organization);
|
|||
|
|
Task DeleteOrganizationAbilityAsync(Guid organizationId);
|
|||
|
|
}
|
|||
|
|
}
|