1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-18 19:48:12 -05:00
bitwarden/src/Core/Services/IDeviceService.cs

11 lines
177 B
C#

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