mirror of
https://github.com/bitwarden/server
synced 2025-12-26 05:03:18 +00:00
11 lines
194 B
C#
11 lines
194 B
C#
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Table;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface ICollectionService
|
|
{
|
|
Task SaveAsync(Collection collection);
|
|
}
|
|
}
|