Files

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
}
}