37 lines
799 B
Swift
37 lines
799 B
Swift
//
|
|
// File.swift
|
|
// NetworkApi
|
|
//
|
|
// Created by User on 27.05.2025.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
//{
|
|
// "collectionId": "string",
|
|
// "collectionName": "string",
|
|
// "created": "string",
|
|
// "emailVisibility": true,
|
|
// "firstname": "string",
|
|
// "id": "string",
|
|
// "lastname": "string",
|
|
// "secondname": "string",
|
|
// "updated": "string",
|
|
// "verified": true,
|
|
// "datebirthday": "string",
|
|
// "gender": "string"
|
|
//}
|
|
|
|
public struct ServerResponseUserInfo: Decodable {
|
|
public let collectionId: String
|
|
public let collectionName: String
|
|
public let created: String
|
|
public let firstname: String
|
|
public let gender: String
|
|
public let id: String
|
|
public let lastname: String
|
|
public let secondname: String
|
|
public let dateBirthday: String
|
|
public let updated: String
|
|
}
|