mirror of
https://github.com/bitwarden/server.git
synced 2025-04-18 19:48:12 -05: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);
|
|
}
|
|
}
|