namespace Plugins.Countly.Services
{
public interface IConsentCountlyService
{
///
/// Checks consent for a particular feature
///
///
///
bool CheckConsent(string feature);
///
/// Updates a feature to give/deny consent
///
///
///
void UpdateConsent(string feature, bool permission);
}
}