Files
Woka_Native_iOS/WOKA/Authentication/Model/LinkedChildDM.swift
BilalKhanWDI 3f2899b9a3 - Added api for child register
- Finalised the registration for parent
- Finalised the flow for above 16 and go the registeration completed.
- Added a View controller for showing the linked child.
2024-05-09 18:07:59 +05:30

23 lines
349 B
Swift

//
// 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?
}
}