vds_ios/VDS/Protocols/Valuing.swift
Matt Bruce 963e31acd3 Adding the padding fix between TileContainer/Tilelet
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2024-03-01 14:28:17 -06:00

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 }
}