using Bit.Core.Entities; using Bit.Core.Models.Data; namespace Bit.Core.OrganizationFeatures.OrganizationCollections.Interfaces; public interface ICreateCollectionCommand { /// /// Creates a new collection. /// /// The collection to create. /// (Optional) The groups that will have access to the collection. /// (Optional) The users that will have access to the collection. /// The created collection. Task CreateAsync(Collection collection, IEnumerable groups = null, IEnumerable users = null); }