12 lines
221 B
Swift
12 lines
221 B
Swift
import Foundation
|
|
|
|
struct ServerGroup: Identifiable, Codable, Hashable, Equatable {
|
|
let id: UUID
|
|
var name: String
|
|
|
|
init(id: UUID = UUID(), name: String) {
|
|
self.id = id
|
|
self.name = name
|
|
}
|
|
}
|