Files
Woka_Native_iOS/WOKA/Authentication/Model/LinkedChildDM.swift

23 lines
349 B
Swift
Raw Normal View History

//
// LinkedChildDM.swift
// WOKA
//
// Created by MacBook Pro on 09/05/24.
//
import Foundation
// MARK: - LinkedChildDM
struct LinkedChildDM: Codable {
let result: [ResultChild]?
// MARK: - Result
struct ResultChild: Codable {
let id: Int?
let username, fullname: String?
let avtar: String?
}
}