mirror of
https://github.com/bitwarden/server.git
synced 2025-04-27 15:52:13 -05:00
13 lines
292 B
C#
13 lines
292 B
C#
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Table;
|
|
using System.Collections.Generic;
|
|
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface IGroupService
|
|
{
|
|
Task SaveAsync(Group group, IEnumerable<SelectionReadOnly> collections = null);
|
|
}
|
|
}
|