Files
SwiftUI/Examples/Jike/SwiftUI_Jike/Models/TabBarItem.swift
Ivan Vorobei 27a7f9fae6 Add Jike
2019-06-06 22:36:07 +03:00

17 lines
298 B
Swift
Executable File

//
// TabBarModel.swift
// SwiftUI_Jike
//
// Created by alexyang on 2019/6/6.
// Copyright © 2019 alexyang. All rights reserved.
//
import SwiftUI
struct TabBarItem: Hashable, Codable, Identifiable {
var id: Int
var title: String
var image: String
var imageSelect: String
}