feat: add optional server groups

This commit is contained in:
2026-04-21 00:15:08 +02:00
parent 08db74f397
commit 44cc620d3d
6 changed files with 519 additions and 84 deletions

View File

@@ -0,0 +1,11 @@
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
}
}