c70b934d878a09304916bbbecc4b120d8f68be03
[smartthings-infrastructure.git] / Location / Phrase.groovy
1 //Create a class for Phrase
2 package Location
3
4 class Phrase {
5         private LinkedHashMap phrases
6         
7         Phrase() {
8                 this.phrases = [id:0, label:"Good Morning!"]
9         } 
10         def getPhrases() {
11                 return this.phrases
12         }
13 }
14
15