Skip to content
Snippets Groups Projects
Commit ee77ad92 authored by Dariusz Rybicki's avatar Dariusz Rybicki
Browse files

Add UDEnvironment model

parent 7b37618b
No related branches found
No related tags found
2 merge requests!118User Discovery Environment,!102Release 1.0.0
This commit is part of merge request !118. Comments created here will be created in the context of that merge request.
import Foundation
public struct UDEnvironment: Equatable, Codable {
public init(
address: String,
cert: Data,
contact: Data
) {
self.address = address
self.cert = cert
self.contact = contact
}
public var address: String
public var cert: Data
public var contact: Data
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment