15 lines
254 B
Swift
15 lines
254 B
Swift
//
|
|
// Groupable.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 5/24/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol Groupable: Control {
|
|
|
|
/// Property used to add context to the Grouping of a set.
|
|
var accessibilityValueText: String? { get set }
|
|
}
|