10 lines
165 B
Swift
10 lines
165 B
Swift
import SwiftUI
|
|
|
|
protocol Network {
|
|
associatedtype Label: View
|
|
|
|
var id: String { get }
|
|
var backgroundColor: Color { get }
|
|
|
|
var label: Label { get }
|
|
}
|