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
}