mirror of
https://github.com/bitwarden/server
synced 2026-01-02 08:33:48 +00:00
11 lines
177 B
C#
11 lines
177 B
C#
using System.Threading.Tasks;
|
|
using Bit.Core.Domains;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface IDeviceService
|
|
{
|
|
Task SaveAsync(Device device);
|
|
}
|
|
}
|