bitwarden-android/src/App/Abstractions/Services/ISyncService.cs

9 lines
146 B
C#
Raw Normal View History

using System.Threading.Tasks;
namespace Bit.App.Abstractions
{
public interface ISyncService
{
Task<bool> SyncAsync();
}
}