jsoncreator_app/JSONCreator_iOS/JSONCreator/Models/MolecularModel.swift
Kevin G Christiano 93e11b7de8 better API contact
2020-01-28 14:52:25 -05:00

22 lines
407 B
Swift

//
// MolecularModel.swift
// JSONCreator
//
// Created by Kevin Christiano on 8/21/19.
// Copyright © 2019 Verizon Wireless. All rights reserved.
//
import Foundation
class StructureCategoryModel {
var category: String = ""
var structures: [(key: String, value: String)] = []
// var jsonRepresentation = ""
init(category: String) {
self.category = category
}
}