Files
ClashX-Dashboard/ClashX Dashboard/ClashX Links/Models/ClashConnection.swift
2023-05-25 23:43:57 +08:00

21 lines
363 B
Swift

//
// ClashConnection.swift
// ClashX
//
// Created by yicheng on 2019/10/28.
// Copyright © 2019 west2online. All rights reserved.
//
import Cocoa
struct ClashConnectionSnapShot: Codable {
let connections: [Connection]
}
extension ClashConnectionSnapShot {
struct Connection: Codable {
let id: String
let chains: [String]
}
}