35 lines
706 B
Swift
35 lines
706 B
Swift
//
|
|
// File.swift
|
|
// NetworkApi
|
|
//
|
|
// Created by User on 27.05.2025.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
//{
|
|
// "collectionId": "_pb_users_auth_",
|
|
// "collectionName": "users",
|
|
// "created": "2025-05-27 06:07:03.550Z",
|
|
// "dateBirthday": "",
|
|
// "emailVisibility": false,
|
|
// "firstname": "",
|
|
// "gender": "",
|
|
// "id": "0et69a89t2nyvvc",
|
|
// "lastname": "",
|
|
// "secondname": "",
|
|
// "updated": "2025-05-27 06:07:03.550Z",
|
|
// "verified": false
|
|
//}
|
|
|
|
public struct ServerResponseRegister: Decodable {
|
|
let collectionId: String
|
|
let collectionName: String
|
|
let dateBirthday: String
|
|
let firstname: String
|
|
let gender: String
|
|
let id: String
|
|
let lastname: String
|
|
let secondname: String
|
|
}
|