vds_ios/VDS/Protocols/Useable.swift

21 lines
331 B
Swift

//
// Useable.swift
// VDS
//
// Created by Jarrod Courtney on 9/22/22.
//
import Foundation
import UIKit
import VDSCoreTokens
/// Enum to describe types of use.
public enum Use: String, Equatable {
case primary, secondary
}
public protocol Useable {
/// Selection for the type of use.
var use: Use { get set }
}