// // Surfaceable.swift // VDS // // Created by Matt Bruce on 7/26/22. // import Foundation public enum Surface: String, Codable { case light, dark } public protocol Surfaceable { var surface: Surface { get set } }