Files
libr-ios/librx/ExploreSource.swift
2015-10-25 18:35:39 +08:00

33 lines
627 B
Swift

//
// ExploreSource.swift
// librx
//
// Created by Yunlong Zheng on 15/10/25.
// Copyright © 2015年 librx. All rights reserved.
//
import Foundation
class ExploreSource{
let id: Int
let title: String
let img: String
let description: String
let source_type: String
init(id: Int,
title: String,
img: String,
description: String,
source_type: String){
self.id = id
self.title = title
self.img = img
self.description = description
self.source_type = source_type
}
}