feat: add optional server groups
This commit is contained in:
11
Sources/Model/API/ServerGroup.swift
Normal file
11
Sources/Model/API/ServerGroup.swift
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user