vds_ios/VDS/Protocols/DefaultValuing.swift
Matt Bruce d0c40aaeca refactored DefaultValuing to be its own thing
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2024-08-15 15:41:46 -05:00

13 lines
173 B
Swift

//
// EnumValuing.swift
// VDS
//
// Created by Matt Bruce on 3/1/24.
//
import Foundation
public protocol DefaultValuing {
static var defaultValue: Self { get }
}