mirror of
https://github.com/wahyd4/libr-ios.git
synced 2026-08-09 05:06:46 +10:00
33 lines
620 B
Swift
33 lines
620 B
Swift
//
|
|
// Explore.swift
|
|
// librx
|
|
//
|
|
// Created by Yunlong Zheng on 15/9/17.
|
|
// Copyright (c) 2015年 librx. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class Explore {
|
|
|
|
let id: Int
|
|
let name: String
|
|
let resourceUrl: String
|
|
let iconUrl: String
|
|
let description: String
|
|
|
|
init(
|
|
id: Int,
|
|
name: String,
|
|
resourceUrl: String,
|
|
iconUrl: String,
|
|
description: String
|
|
){
|
|
self.id = id
|
|
self.name = name
|
|
self.resourceUrl = resourceUrl
|
|
self.iconUrl = iconUrl
|
|
self.description = description
|
|
}
|
|
|
|
} |