13 lines
162 B
Swift
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 }
|
|
}
|