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

11 lines
229 B
C#
Raw Normal View History

using System.Collections.Generic;
using System.Threading.Tasks;
namespace Bit.App.Abstractions
2017-02-09 04:44:35 +03:00
{
public interface ISettingsService
{
Task<IEnumerable<IEnumerable<string>>> GetEquivalentDomainsAsync();
2017-02-09 04:44:35 +03:00
}
}