mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
9 lines
146 B
C#
9 lines
146 B
C#
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Bit.App.Abstractions
|
|||
|
{
|
|||
|
public interface ISyncService
|
|||
|
{
|
|||
|
Task<bool> SyncAsync();
|
|||
|
}
|
|||
|
}
|