22 lines
407 B
Swift
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
|
|
}
|
|
}
|