21 lines
327 B
Swift
21 lines
327 B
Swift
//
|
|
// Useable.swift
|
|
// VDS
|
|
//
|
|
// Created by Jarrod Courtney on 9/22/22.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
import VDSTokens
|
|
|
|
/// 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 }
|
|
}
|