using System.Threading.Tasks; namespace Bit.Core.Abstractions { public interface IAppIdService { Task GetAppIdAsync(); Task GetAnonymousAppIdAsync(); } }