14 lines
182 B
Swift
14 lines
182 B
Swift
//
|
|
// Valuing.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 3/1/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol Valuing {
|
|
associatedtype ValueType
|
|
var value: ValueType { get }
|
|
}
|