mirror of
https://github.com/bitwarden/server.git
synced 2024-12-02 13:53:23 +01:00
13 lines
268 B
C#
13 lines
268 B
C#
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Table;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface IDeviceService
|
|
{
|
|
Task SaveAsync(Device device);
|
|
Task ClearTokenAsync(Device device);
|
|
Task DeleteAsync(Device device);
|
|
}
|
|
}
|