update ios project
update ios project
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
//
|
||||
// TunnelConfiguration.swift
|
||||
// Runner
|
||||
//
|
||||
// Created by Jerry Bool on 2022/12/7.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
public final class TunnelConfiguration {
|
||||
public var name: String?
|
||||
|
||||
public var content: String?
|
||||
|
||||
public init(name: String?, content: String?) {
|
||||
self.name = name
|
||||
self.content = content
|
||||
}
|
||||
}
|
||||
|
||||
extension TunnelConfiguration: Equatable {
|
||||
public static func == (lhs: TunnelConfiguration, rhs: TunnelConfiguration) -> Bool {
|
||||
return lhs.name == rhs.name &&
|
||||
lhs.name == rhs.name
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user