using Bit.Core.Vault.Entities;
using Bit.Core.Vault.Models.Data;
namespace Bit.Core.Vault.Queries;
public interface IGetSecurityTasksNotificationDetailsQuery
{
///
/// Retrieves all users within the given organization that are applicable to the given security tasks.
///
///
///
/// A dictionary of UserIds and the corresponding amount of security tasks applicable to them.
///
public Task> GetNotificationDetailsByManyIds(Guid organizationId, IEnumerable tasks);
}