17 lines
229 B
Swift
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 }
|
|
}
|