1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-29 00:32:18 -05:00
bitwarden/src/Core/Services/IDeviceService.cs
2017-03-08 21:45:08 -05:00

11 lines
182 B
C#

using System.Threading.Tasks;
using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
public interface IDeviceService
{
Task SaveAsync(Device device);
}
}