struct User: Codable, Equatable {
        let id: Int
        let name: String

        init(id: Int, name: String) {