/* Options: Date: 2025-05-05 02:59:39 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: ListSystemTimeZones.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Gets all of the system time zone IDs and names */ // @Route("/system/time-zones", "GET") // @Api(Description="Gets all of the system time zone IDs and names") public class ListSystemTimeZones : IReturn, IGet, Codable { public typealias Return = [SystemTimeZoneInfo] required public init(){} }