vds_ios/VDS/Protocols/Useable.swift
Matt Bruce 21ac83af4f removed codable
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2023-01-25 11:50:11 -06:00

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