using System.Collections.Generic; using System.Threading.Tasks; using Oqtane.Models; namespace Oqtane.Services { /// /// Service to store and retrieve entries /// public interface ITimeZoneService { /// /// Get the list of time zones /// /// Task> GetTimeZonesAsync(); } }