// // Constants.swift // EventLocator // // Created by Saim on 01/12/2019. // Copyright © 2019 Saim. All rights reserved. // import Foundation public struct Constants { public static let GMaps_API_Key = "AIzaSyB7-FiguDbMpNnIo0DDgzGu53Ylblaqewo" public static let registeredUsers = "RegisteredUsers" public static let userId = "user_id" public static let deviceType = "device_type" public static let userRadius = "user_radius" public static let userLocation = "user_location" public static let showEndedEvents = "show_ended_events" public static let events = "Events" public static let eventName = "event_name" public static let eventId = "event_id" public static let eventStart = "event_start" public static let eventEnd = "event_end" public static let eventLocation = "event_location" public static let eventCoverUrl = "event_cover_url" public static let eventCoverThumbnailUrl = "event_cover_thumbnail_url" public static let pictures = "Pictures" public static let pictureId = "picture_id" public static let pictureUrl = "picture_url" public static let pictureThumbnailUrl = "picture_thumbnail_url" public static let pictureTime = "picture_time" public static let showcaseShown = "showcaseShown" public static let mapsShowcaseShown = "mapsShowcaseShown" }