mirror of
https://github.com/bitwarden/server.git
synced 2024-12-01 13:43:23 +01:00
14 lines
316 B
C#
14 lines
316 B
C#
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Table;
|
|
using System.Collections.Generic;
|
|
using System;
|
|
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface ICollectionService
|
|
{
|
|
Task SaveAsync(Collection collection, IEnumerable<SelectionReadOnly> groups = null);
|
|
}
|
|
}
|