vds_ios/VDS/Protocols/Groupable.swift
Matt Bruce 91de90354d added groupable protocol
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2024-05-24 08:30:27 -05:00

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