Files
makata/Sources/form/protocol/protocol-field-transformable.swift
2023-02-03 15:56:38 +08:00

17 lines
280 B
Swift

//
// File.swift
//
//
// Created by Michael Ong on 2/3/23.
//
import Foundation
public protocol FieldTransformable {
associatedtype Value
associatedtype Output
func encode(to value: Value) throws -> Output
func decode(from value: Output) throws -> Value
}