using System.Collections.Generic; using Oqtane.Models; namespace Oqtane.Services { /// /// Service to retrieve entries /// public interface ITimeZoneService { /// /// Get the list of time zones /// /// List GetTimeZones(); } }