Skip to content
Snippets Groups Projects

Bindings models wrapper

Merged Dariusz Rybicki requested to merge feature/bindings-models-wrapper into main
Files
2
public struct ContactFact: Equatable {
public struct Fact: Equatable {
public init(
fact: String,
type: Int
@@ -11,7 +11,7 @@ public struct ContactFact: Equatable {
public var type: Int
}
extension ContactFact: Codable {
extension Fact: Codable {
enum CodingKeys: String, CodingKey {
case fact = "Fact"
case type = "Type"
Loading