1
0
mirror of https://github.com/bitwarden/server synced 2025-12-06 00:03:34 +00:00
Files
server/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);
}
}