From 32a5f26ddd2ab5b1586a2a2d03570a21c9fe0273 Mon Sep 17 00:00:00 2001 From: Admin Date: Mon, 11 Jan 2016 16:45:49 -0600 Subject: [PATCH] Added new object --- .../com/bwssystems/NestBridge/NestItem.java | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/main/java/com/bwssystems/NestBridge/NestItem.java diff --git a/src/main/java/com/bwssystems/NestBridge/NestItem.java b/src/main/java/com/bwssystems/NestBridge/NestItem.java new file mode 100644 index 0000000..0237a32 --- /dev/null +++ b/src/main/java/com/bwssystems/NestBridge/NestItem.java @@ -0,0 +1,32 @@ +package com.bwssystems.NestBridge; + +public class NestItem { + private String name; + private String Id; + private String type; + private String location; + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + public String getId() { + return Id; + } + public void setId(String id) { + Id = id; + } + public String getType() { + return type; + } + public void setType(String type) { + this.type = type; + } + public String getLocation() { + return location; + } + public void setLocation(String location) { + this.location = location; + } +}