17 lines
281 B
Swift
17 lines
281 B
Swift
//
|
|
// MolecularModel.swift
|
|
// JSONCreator
|
|
//
|
|
// Created by Kevin Christiano on 8/21/19.
|
|
// Copyright © 2019 Verizon Wireless. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
|
|
class MolecularModel {
|
|
|
|
var category: String = ""
|
|
var molecules: [[AnyHashable: Any]] = []
|
|
}
|