vds_ios/VDS/Protocols/Selectable.swift
Matt Bruce a671765e80 moved selectable into own protocol
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-08-23 12:54:57 -05:00

13 lines
162 B
Swift

//
// Selectable.swift
// VDS
//
// Created by Matt Bruce on 8/23/22.
//
import Foundation
public protocol Selectable {
var selected: Bool { get set }
}