getter only

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2023-08-30 14:36:20 -05:00
parent d9dc8e9b4f
commit 508ff47d99

View File

@ -11,7 +11,7 @@ import Combine
public protocol ActionLabelAttributeModel: LabelAttributeModel {
var accessibleText: String? { get set }
var action: PassthroughSubject<Void, Never> { get set }
var action: PassthroughSubject<Void, Never> { get }
}
extension ActionLabelAttributeModel {