19 lines
258 B
Swift
19 lines
258 B
Swift
//
|
|
// Useable.swift
|
|
// VDS
|
|
//
|
|
// Created by Jarrod Courtney on 9/22/22.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
import VDSColorTokens
|
|
|
|
public enum Use: String, Equatable {
|
|
case primary, secondary
|
|
}
|
|
|
|
public protocol Useable {
|
|
var use: Use { get set }
|
|
}
|