16 lines
270 B
Swift
16 lines
270 B
Swift
//
|
|
// MeshifyValue.swift
|
|
// pocloud
|
|
//
|
|
// Created by Patrick McDonagh on 5/31/18.
|
|
// Copyright © 2018 patrickjmcd. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class MeshifyValue {
|
|
var name : String = ""
|
|
var value : String = ""
|
|
var timestamp : Int = 0
|
|
}
|