vds_ios/VDS/Protocols/Surfaceable.swift
Matt Bruce d61f60cc21 refactored more of the toggle
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-07-26 12:04:41 -05:00

17 lines
229 B
Swift

//
// 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 }
}