vds_ios/VDS/Protocols/Useable.swift
Matt Bruce d98b08d26e removed old frameworks to add the 1 primary VDSTokens
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2024-01-23 10:09:09 -06:00

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