using Bit.Core.Vault.Entities; namespace Bit.Core.Vault.Commands.Interfaces; public interface ICreateManyTaskNotificationsCommand { /// /// Creates email and push notifications for the given security tasks. /// /// The organization Id /// All applicable security tasks Task CreateAsync(Guid organizationId, IEnumerable securityTasks); }