Skip to content

Instantly share code, notes, and snippets.

@maguhiro
maguhiro / Sample.swift
Last active August 12, 2019 06:24
値オブジェクトのCodable対応
import Foundation
protocol ValueObject: Codable, CustomStringConvertible, Equatable {
associatedtype Value: Codable, CustomStringConvertible, Equatable
var value: Value { get }
init(value: Value)
}