using Oqtane.Models; using System; using System.Threading.Tasks; namespace Oqtane.Services { /// /// Service to retrieve cookie consent information. /// public interface ICookieConsentService { /// /// Get cookie consent status /// /// Task CanTrackAsync(); /// /// Grant cookie consent /// /// Task CreateConsentCookieAsync(); } }