13 lines
173 B
Swift
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 }
|
|
}
|