// // ListProtocol.swift // Pachyderm // // Created by Shadowfacts on 2/25/23. // import Foundation public protocol ListProtocol { var id: String { get } var title: String { get } }