mirror of
https://github.com/bitwarden/server.git
synced 2024-12-11 15:17:44 +01:00
13 lines
267 B
C#
13 lines
267 B
C#
|
using System.Threading.Tasks;
|
|||
|
using Bit.Core.Models.Table;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace Bit.Core.Services
|
|||
|
{
|
|||
|
public interface IGroupService
|
|||
|
{
|
|||
|
Task SaveAsync(Group group, IEnumerable<Guid> collectionIds = null);
|
|||
|
}
|
|||
|
}
|