mirror of
https://github.com/tappollo/WWDC.git
synced 2026-01-12 22:45:32 +08:00
19 lines
349 B
Swift
19 lines
349 B
Swift
//
|
|
// SessionsResponse.swift
|
|
// WWDC
|
|
//
|
|
// Created by Guilherme Rambo on 21/02/17.
|
|
// Copyright © 2017 Guilherme Rambo. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct SessionsResponse {
|
|
|
|
public let events: [Event]
|
|
public let sessions: [Session]
|
|
public let assets: [SessionAsset]
|
|
public let tracks: [Track]
|
|
|
|
}
|