added resetable

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2022-08-03 15:25:34 -05:00
parent 358e663bdc
commit b50f4014c1

View File

@ -0,0 +1,12 @@
//
// Resetable.swift
// VDS
//
// Created by Matt Bruce on 8/3/22.
//
import Foundation
public protocol Resettable {
func reset()
}