This repository has been archived on 2024-05-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AlloVictor/AlloVictor/Models/Leaseholder.swift
Victor Bodinaud 9ec3ba818b 🚀 First version
2024-04-18 19:32:10 +02:00

23 lines
394 B
Swift

//
// Leaseholder.swift
// AlloVictor
//
// Created by Bodinaud Victor on 18/04/2024.
//
import Foundation
struct Leaseholder: Codable, Identifiable {
let id: Int
let displayName: String
let avatarUrl: String
let userRatings: Int
enum CodingKeys: String, CodingKey {
case id
case displayName
case avatarUrl
case userRatings
}
}