Skip to content
Snippets Groups Projects
Select Git revision
  • 0c86ff05408176fc96cd8cf6d6b56017e53b43cb
  • main default protected
  • development
  • integration
  • v1.1.5
  • v1.1.4
  • v1.1.3
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.0
11 results

CmixStartNetworkFollower.swift

Blame
  • Fact.swift 301 B
    public struct Fact: Equatable {
      public init(
        fact: String,
        type: Int
      ) {
        self.fact = fact
        self.type = type
      }
    
      public var fact: String
      public var type: Int
    }
    
    extension Fact: Codable {
      enum CodingKeys: String, CodingKey {
        case fact = "Fact"
        case type = "Type"
      }
    }