mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
14 lines
240 B
Swift
14 lines
240 B
Swift
//
|
|
// PlaylistState.swift
|
|
// Persephone
|
|
//
|
|
// Created by Dan Barber on 2020-4-24.
|
|
// Copyright © 2020 Dan Barber. All rights reserved.
|
|
//
|
|
|
|
import ReSwift
|
|
|
|
struct PlaylistState: StateType, Equatable {
|
|
var playlists: [Playlist] = []
|
|
}
|