mirror of
https://github.com/wahyd4/libr-ios.git
synced 2026-08-16 16:46:24 +10:00
33 lines
627 B
Swift
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
|
|
|
|
}
|
|
|
|
} |