using System.Threading.Tasks; namespace Oqtane.Services { /// /// Service to set localization cookie /// public interface ILocalizationCookieService { /// /// Set the localization cookie /// /// /// Task SetLocalizationCookieAsync(string culture); } }