vds_ios/VDS/Protocols/Useable.swift
Matt Bruce 7687c42fe2 minor fixes
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-09-23 16:38:52 -05:00

19 lines
267 B
Swift

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