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; + } +}