using Plugins.Countly.Models;
namespace Plugins.Countly.Services.Impls.Actual
{
public class ConsentCountlyService : IConsentCountlyService
{
#region Consents
#region Unused Code
///
/// Checks consent for a particular feature
///
///
///
public bool CheckConsent(string feature)
{
return ConsentModel.CheckConsent(feature);
}
///
/// Updates a feature to give/deny consent
///
///
///
public void UpdateConsent(string feature, bool permission)
{
ConsentModel.UpdateConsent(feature, permission);
}
#endregion
#endregion
}
}