13 lines
175 B
Swift
13 lines
175 B
Swift
//
|
|
// Changable.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 7/22/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol Changable {
|
|
var onChange: Blocks.ActionBlock? { get set }
|
|
}
|