This repository has been archived on 2025-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
ios_app/Shared/Models/User.swift
2025-07-23 02:16:37 +03:00

7 lines
125 B
Swift

import Foundation
struct User: Identifiable, Decodable {
let id: String
let username: String
let email: String
}