data-lite-coder/Sources/DLCDecoder/Protocols/KeyCheckingDecoder.swift
2025-08-05 20:09:18 +03:00

5 lines
111 B
Swift

import Foundation
public protocol KeyCheckingDecoder: Decoder {
func contains(_ key: CodingKey) -> Bool
}