mirror of
https://github.com/tappollo/WWDC.git
synced 2026-06-18 03:49:00 +08:00
20 lines
384 B
Swift
20 lines
384 B
Swift
//
|
|
// ScheduleResponse.swift
|
|
// WWDC
|
|
//
|
|
// Created by Guilherme Rambo on 21/02/17.
|
|
// Copyright © 2017 Guilherme Rambo. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct ContentsResponse {
|
|
|
|
public let events: [Event]
|
|
public let rooms: [Room]
|
|
public let tracks: [Track]
|
|
public let instances: [SessionInstance]
|
|
public let sessions: [Session]
|
|
|
|
}
|