1
0
mirror of https://github.com/bitwarden/server synced 2025-12-26 05:03:18 +00:00
Files
server/src/Core/Services/ICollectionService.cs
2017-04-27 09:28:23 -04:00

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);
}
}