using Azerion.BlueStack.API; namespace Azerion.BlueStack.Internal { public interface IPreferenceClient { void SetAge(int age); void SetLocation(Location location, int consentFlag); void SetLanguage(string language); void SetGender(Gender gender); void SetKeyword(string keyword); void SetContentUrl(string contentUrl); void Destroy(); } }