vds_ios/VDS/Protocols/Useable.swift
Matt Bruce e3f791960a documentation update
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2023-08-30 13:29:52 -05:00

21 lines
332 B
Swift

//
// Useable.swift
// VDS
//
// Created by Jarrod Courtney on 9/22/22.
//
import Foundation
import UIKit
import VDSColorTokens
/// 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 }
}