import Foundation

struct Group: Codable, Identifiable {
    let gruppeID: Int
    let name: String
    
    var id: Int { gruppeID }
}