mirror of
https://github.com/tappollo/makata.git
synced 2026-01-12 17:03:04 +08:00
17 lines
280 B
Swift
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
|
|
}
|