using System.Threading.Tasks; using Bit.Core.Models.Table; using System.Collections.Generic; using Bit.Core.Models.Data; namespace Bit.Core.Services { public interface ICollectionService { Task SaveAsync(Collection collection, IEnumerable groups = null); Task DeleteAsync(Collection collection); } }