vds_ios/VDS/Protocols/Resetable.swift
Matt Bruce ce9e64da0f updated comments
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2023-08-04 10:22:31 -05:00

14 lines
178 B
Swift

//
// Resetable.swift
// VDS
//
// Created by Matt Bruce on 8/3/22.
//
import Foundation
public protocol Resettable {
/// Resets to default settings.
func reset()
}