mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-03-25 02:41:16 +01:00
18 lines
346 B
Swift
Executable File
18 lines
346 B
Swift
Executable File
//
|
|
// UserData.swift
|
|
// WWDCPlayer
|
|
//
|
|
// Created by sohee on 2019/06/06.
|
|
// Copyright © 2019 daybreak. All rights reserved.
|
|
//
|
|
import SwiftUI
|
|
import Combine
|
|
|
|
final class UserData: ObservableObject {
|
|
@Published var showFavoriteOnly = false
|
|
|
|
@Published var videos = videoList
|
|
|
|
@Published var currentVideo = videoList[0]
|
|
}
|