ExCodable icon indicating copy to clipboard operation
ExCodable copied to clipboard

feat: make `Any` support Codable, like: [String: Any], [Any]

Open yxh265 opened this issue 1 year ago • 0 comments

让 [String: Any], [Any]支持Codable,模型定义如下

struct testModel: ExAutoCodable { @ExCodable var jumpParam: [String: Any]? = [:]

@ExCodable
var matchs: [Any] = []

}

yxh265 avatar Nov 22 '22 05:11 yxh265